xargana-srv/discord/index.js

978 lines
30 KiB
JavaScript
Raw Normal View History

2025-03-29 16:47:26 +01:00
require("dotenv").config();
const {
Client,
GatewayIntentBits,
REST,
Routes,
ApplicationCommandOptionType,
ApplicationCommandType
} = require("discord.js");
const axios = require("axios");
const ping = require("ping");
const whois = require('whois-json');
2025-03-29 16:47:26 +01:00
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.DirectMessageReactions,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildMessageTyping
],
partials: ['CHANNEL', 'MESSAGE'] // This is important for DM functionality
});
2025-03-29 16:47:26 +01:00
// Original slash commands
const slashCommands = [
{
name: "fetch_data",
description: "Fetches data from an API",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
2025-03-29 16:47:26 +01:00
options: [
{
name: "url",
description: "The URL to fetch data from",
type: ApplicationCommandOptionType.String,
required: true,
},
],
},
{
name: "ping",
description: "Pings a remote server.",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
2025-03-29 16:47:26 +01:00
options: [
{
name: "ip",
description: "The IP Adress to ping.",
type: ApplicationCommandOptionType.String,
required: true,
},
],
},
{
name: "server_status",
description: "Fetches data from an API",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
2025-03-29 16:47:26 +01:00
options: [
{
name: "raw",
description: "Display raw JSON data",
type: ApplicationCommandOptionType.Boolean,
required: false,
},
],
},
// Add Cody command
{
name: "cody",
description: "Ask Cody (Sourcegraph AI) a coding question",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
2025-03-29 16:47:26 +01:00
options: [
{
name: "question",
description: "Your coding question",
type: ApplicationCommandOptionType.String,
required: true,
},
],
},
// Add Weather command
{
name: "weather",
description: "Get current weather for a location",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
2025-03-29 16:47:26 +01:00
options: [
{
name: "location",
description: "City name or postal code",
type: ApplicationCommandOptionType.String,
required: true,
},
],
},
// Add Minecraft server status command
{
name: "mcstatus",
description: "Check the status of a Minecraft server",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "server",
description: "Server address (e.g., mc.hypixel.net)",
type: ApplicationCommandOptionType.String,
required: true,
},
{
name: "bedrock",
description: "Is this a Bedrock server? (Default: false)",
type: ApplicationCommandOptionType.Boolean,
required: false,
},
],
},
{
name: "animal",
description: "Get a random animal image",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "type",
description: "Type of animal",
type: ApplicationCommandOptionType.String,
required: true,
choices: [
{ name: "Dog", value: "dog" },
{ name: "Cat", value: "cat" },
{ name: "Panda", value: "panda" },
{ name: "Fox", value: "fox" },
{ name: "Bird", value: "bird" },
{ name: "Koala", value: "koala" },
{ name: "Red Panda", value: "red_panda" },
{ name: "Raccoon", value: "raccoon" },
{ name: "Kangaroo", value: "kangaroo" }
]
},
],
},
// Add Anime commands
{
name: "anime",
description: "Get anime-related content",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "type",
description: "Type of anime content",
type: ApplicationCommandOptionType.String,
required: true,
choices: [
{ name: "Wink", value: "wink" },
{ name: "Pat", value: "pat" },
{ name: "Hug", value: "hug" },
{ name: "Face Palm", value: "face-palm" },
{ name: "Quote", value: "quote" }
]
},
],
},
{
name: "checkdns",
description: "Check if a domain is blocked by running it through a DNS server",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "domain",
description: "Domain name to check (e.g. example.com)",
type: ApplicationCommandOptionType.String,
required: true,
},
{
name: "provider",
description: "DNS provider to use",
type: ApplicationCommandOptionType.String,
required: false,
choices: [
{ name: "Cloudflare (1.1.1.1)", value: "1.1.1.1" },
{ name: "Google (8.8.8.8)", value: "8.8.8.8" },
{ name: "OpenDNS", value: "208.67.222.222" },
{ name: "Quad9", value: "9.9.9.9" },
{ name: "AdGuard", value: "94.140.14.14" },
{ name: "Turknet", value: "193.192.98.8" },
{ name: "TTnet", value: "195.175.39.49" },
{ name: "Turkcell", value: "195.175.39.49" },
{ name: "Superonline", value: "195.114.66.100" }
]
}
]
},
{
name: "traceroute",
description: "Show network path to a destination",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "target",
description: "IP address or domain to trace (might take a long time to complete)",
type: ApplicationCommandOptionType.String,
required: true,
},
{
name: "hops",
description: "Maximum number of hops (default: 30)",
type: ApplicationCommandOptionType.Integer,
required: false,
min_value: 1,
max_value: 32
}
]
},
{
name: "whois",
description: "Get domain registration information",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "domain",
description: "Domain to lookup (e.g. example.com)",
type: ApplicationCommandOptionType.String,
required: true,
}
]
},
// Add to slashCommands array
{
name: "stats",
description: "Show bot and server statistics",
type: ApplicationCommandType.ChatInput,
dm_permission: true
},
// Add to slashCommands array
{
name: "checkport",
description: "Check if specific ports are open on a domain",
type: ApplicationCommandType.ChatInput,
dm_permission: true,
options: [
{
name: "target",
description: "Domain or IP to scan",
type: ApplicationCommandOptionType.String,
required: true,
},
{
name: "ports",
description: "Ports to scan (comma separated, e.g. 80,443,3306)",
type: ApplicationCommandOptionType.String,
required: true,
}
]
}
2025-03-29 16:47:26 +01:00
];
// User context menu commands
const userCommands = [
{
name: "User Info",
type: ApplicationCommandType.User,
},
];
const commands = [...slashCommands, ...userCommands];
async function updateCommands() {
if (!process.env.DISCORD_TOKEN || !process.env.CLIENT_ID) {
console.error("Missing required environment variables: DISCORD_TOKEN or CLIENT_ID");
return;
}
const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);
try {
console.log("Fetching existing commands...");
const existingCommands = await rest.get(Routes.applicationCommands(process.env.CLIENT_ID));
// Delete all existing commands if needed
// for (const command of existingCommands) {
// await rest.delete(`${Routes.applicationCommands(process.env.CLIENT_ID)}/${command.id}`);
// console.log(`Deleted command: ${command.name}`);
// }
// Register new commands (slash + user commands)
console.log("Registering new commands...");
await rest.put(Routes.applicationCommands(process.env.CLIENT_ID), { body: commands });
console.log("Commands updated successfully!");
} catch (error) {
console.error("Error updating commands:", error);
}
}
// Function to ask Cody a question and parse the streaming response
async function askCody(question) {
if (!process.env.SOURCEGRAPH_API_KEY) {
throw new Error("SOURCEGRAPH_API_KEY is not set in environment variables");
}
if (question.length > 1999) {
throw new Error("Input question is too long - must be 1999 characters or less");
}
2025-03-29 16:47:26 +01:00
try {
const response = await axios({
method: 'post',
url: 'https://sourcegraph.com/.api/completions/stream',
data: {
messages: [
{
speaker: "human",
text: question
}
],
temperature: 0.3,
maxTokensToSample: 2000,
topK: 50,
topP: 0.95
},
headers: {
'Content-Type': 'application/json',
'Authorization': `token ${process.env.SOURCEGRAPH_API_KEY}`
},
responseType: 'text'
});
// Parse the streaming response
const events = response.data.split('\n\n').filter(line => line.trim() !== '');
let fullCompletion = '';
for (const event of events) {
const lines = event.split('\n');
const eventType = lines[0].replace('event: ', '');
if (eventType === 'completion') {
const dataLine = lines[1];
if (dataLine && dataLine.startsWith('data: ')) {
try {
const jsonData = JSON.parse(dataLine.substring(6));
if (jsonData.completion) {
// This is the full completion up to this point, not just an increment
fullCompletion = jsonData.completion;
}
} catch (e) {
console.error('Error parsing JSON from Cody response:', e);
}
}
}
}
return fullCompletion;
} catch (error) {
console.error('Error calling Cody API:', error.message);
if (error.response) {
console.error('Response data:', error.response.data);
console.error('Response status:', error.response.status);
}
throw error;
}
2025-03-29 20:20:27 +01:00
}
client.once("ready", async () => {
2025-03-29 20:21:52 +01:00
console.log(`Logged in as ${client.user.tag}`);
2025-03-29 16:47:26 +01:00
await updateCommands();
const ownerId = process.env.OWNER_ID;
const owner = await client.users.fetch(ownerId);
2025-03-29 20:20:27 +01:00
const startupEmbed = {
title: "Bot Status Update",
2025-03-29 20:21:52 +01:00
description: `Bot started successfully at <t:${Math.floor(Date.now() / 1000)}:F>`,
2025-03-29 20:20:27 +01:00
color: 0x00ff00,
fields: [
{
name: "Bot Name",
value: client.user.tag,
inline: true
},
{
2025-03-29 20:21:52 +01:00
name: "Relative Time",
value: `<t:${Math.floor(Date.now() / 1000)}:R>`,
2025-03-29 20:20:27 +01:00
inline: true
}
],
footer: {
text: "blahaj-srv"
}
};
await owner.send({ embeds: [startupEmbed] });
2025-03-29 16:47:26 +01:00
});
2025-03-29 20:20:27 +01:00
2025-03-29 20:21:52 +01:00
2025-03-29 16:47:26 +01:00
client.on("interactionCreate", async (interaction) => {
// Handle slash commands
if (interaction.isChatInputCommand()) {
switch (interaction.commandName) {
case "fetch_data":
try {
const url = interaction.options.getString("url");
if (!url.startsWith("http://") && !url.startsWith("https://")) {
await interaction.reply({
content: "Please provide a valid URL starting with http:// or https://",
ephemeral: true,
});
return;
}
const response = await axios.get(url);
await interaction.reply({
content: `\`\`\`json\n${JSON.stringify(response.data, null, 2)}\n\`\`\``,
});
} catch (error) {
console.error(error);
await interaction.reply({ content: "Failed to fetch data.", ephemeral: true });
}
break;
case "ping":
try {
await interaction.deferReply();
const ip = interaction.options.getString("ip");
const pingResult = await ping.promise.probe(ip);
if (pingResult.time == "unknown") {
await interaction.editReply({
content: "Unable to ping the IP address.",
ephemeral: true,
});
return;
}
await interaction.editReply({ content: `Ping: ${pingResult.time}ms` });
} catch (error) {
console.error(error);
await interaction.editReply({ content: "Failed to ping.", ephemeral: true });
}
break;
case "server_status":
try {
const response = await axios.get("https://blahaj.tr:2589/status");
const isRaw = interaction.options.getBoolean("raw") ?? false;
if (isRaw) {
await interaction.reply({
content: `\`\`\`json\n${JSON.stringify(response.data, null, 2)}\n\`\`\``,
});
} else {
let formattedResponse = "";
for (const [server, data] of Object.entries(response.data)) {
const status = data.online ? "online" : "offline";
const responseTime = data.responseTime.toFixed(2);
formattedResponse += `${server}: ${status}, response time: ${responseTime}ms\n`;
}
await interaction.reply({ content: formattedResponse });
}
} catch (error) {
console.error(error);
await interaction.reply({ content: "Failed to get status.", ephemeral: true });
}
break;
case "cody":
try {
await interaction.deferReply();
const question = interaction.options.getString("question");
if (!process.env.SOURCEGRAPH_API_KEY) {
await interaction.editReply({
content: "Sourcegraph API key not configured. Please add SOURCEGRAPH_API_KEY to your environment variables.",
ephemeral: true
});
return;
}
console.log(`Asking Cody: ${question}`);
// Call Cody API
const codyResponse = await askCody(question);
console.log(`Cody response received: ${codyResponse ? 'yes' : 'no'}`);
// Format the response
let formattedResponse = codyResponse || "No response received from Cody.";
// Calculate total length including the question
const fullResponse = `**Question:** ${question}\n\n**Cody's Answer:**\n${formattedResponse}`;
2025-03-29 16:47:26 +01:00
// If the response is too long for Discord (which has a 2000 character limit)
if (fullResponse.length > 1900) {
formattedResponse = formattedResponse.substring(0, 1900 - question.length - 50) + "...\n(Response truncated due to Discord's character limit)";
2025-03-29 16:47:26 +01:00
}
await interaction.editReply({
content: `**Question:** ${question}\n\n**Cody's Answer:**\n${formattedResponse}`
});
} catch (error) {
console.error("Cody API error:", error);
await interaction.editReply({
content: "Sorry, I couldn't get an answer from Cody. Please try again later.",
ephemeral: true
});
} break;
2025-03-29 16:47:26 +01:00
case "weather":
try {
await interaction.deferReply();
const location = interaction.options.getString("location");
// Make sure you have WEATHER_API_KEY in your .env file
if (!process.env.WEATHER_API_KEY) {
await interaction.editReply({
content: "Weather API key not configured. Please add WEATHER_API_KEY to your environment variables.",
ephemeral: true
});
return;
}
const weatherUrl = `https://api.weatherapi.com/v1/current.json?key=${process.env.WEATHER_API_KEY}&q=${encodeURIComponent(location)}&aqi=no`;
2025-03-29 16:47:26 +01:00
const response = await axios.get(weatherUrl);
const data = response.data;
const location_name = data.location.name;
const region = data.location.region;
const country = data.location.country;
const temp_c = data.current.temp_c;
const temp_f = data.current.temp_f;
const condition = data.current.condition.text;
const humidity = data.current.humidity;
const wind_kph = data.current.wind_kph;
const wind_mph = data.current.wind_mph;
const feelslike_c = data.current.feelslike_c;
const feelslike_f = data.current.feelslike_f;
const weatherEmbed = {
title: `Weather for ${location_name}, ${region}, ${country}`,
description: `Current condition: ${condition}`,
2025-03-29 16:47:26 +01:00
fields: [
{ name: 'Temperature', value: `${temp_c}°C / ${temp_f}°F`, inline: true },
{ name: 'Feels Like', value: `${feelslike_c}°C / ${feelslike_f}°F`, inline: true },
{ name: 'Humidity', value: `${humidity}%`, inline: true },
{ name: 'Wind Speed', value: `${wind_kph} km/h / ${wind_mph} mph`, inline: true }
2025-03-29 16:47:26 +01:00
],
thumbnail: { url: `https:${data.current.condition.icon}` },
timestamp: new Date(),
footer: { text: 'Powered by WeatherAPI.com' }
};
await interaction.editReply({ embeds: [weatherEmbed] });
} catch (error) {
console.error(error);
2025-03-29 16:47:26 +01:00
await interaction.editReply({
content: "Failed to fetch weather data. Please check the location name and try again.",
ephemeral: true
});
}
break;
// In the mcstatus command handler, replace the thumbnail section with this:
case "mcstatus":
try {
await interaction.deferReply();
const serverAddress = interaction.options.getString("server");
const isBedrock = interaction.options.getBoolean("bedrock") ?? false;
// Determine which API endpoint to use based on server type
const apiUrl = isBedrock
? `https://api.mcsrvstat.us/bedrock/2/${encodeURIComponent(serverAddress)}`
: `https://api.mcsrvstat.us/2/${encodeURIComponent(serverAddress)}`;
const response = await axios.get(apiUrl);
const data = response.data;
if (!data.online) {
await interaction.editReply({
content: `📡 **${serverAddress}** is currently offline or could not be reached.`
});
return;
}
// Create a rich embed for the server status
const serverEmbed = {
title: `Minecraft Server Status: ${serverAddress}`,
color: 0x44FF44, // Green color
// Use a default Minecraft image instead of trying to use the base64 icon
thumbnail: {
url: 'https://www.minecraft.net/content/dam/games/minecraft/key-art/MC_The-Wild-Update_540x300.jpg'
},
fields: [
{ name: 'Status', value: data.online ? '✅ Online' : '❌ Offline', inline: true },
{ name: 'Players', value: data.players ? `${data.players.online}/${data.players.max}` : 'Unknown', inline: true },
{ name: 'Version', value: data.version || 'Unknown', inline: true }
],
footer: { text: 'Powered by mcsrvstat.us' },
timestamp: new Date()
};
// Add MOTD if available
if (data.motd && data.motd.clean && data.motd.clean.length > 0) {
serverEmbed.description = `**MOTD:**\n${data.motd.clean.join('\n')}`;
}
// Add player list if available and not empty
if (data.players && data.players.list && data.players.list.length > 0) {
// Limit to first 20 players to avoid hitting Discord's limits
const playerList = data.players.list.slice(0, 20).join(', ');
const hasMore = data.players.list.length > 20;
serverEmbed.fields.push({
name: 'Online Players',
value: playerList + (hasMore ? '...' : '')
});
2025-03-29 16:47:26 +01:00
}
await interaction.editReply({ embeds: [serverEmbed] });
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to fetch Minecraft server status. Please check the server address and try again.",
ephemeral: true
});
2025-03-29 16:47:26 +01:00
}
break;
2025-03-29 16:47:26 +01:00
case "animal":
try {
await interaction.deferReply();
const animalType = interaction.options.getString("type");
// Get animal image
const imageResponse = await axios.get(`https://some-random-api.com/animal/${animalType}`);
const imageUrl = imageResponse.data.image;
const animalEmbed = {
color: 0x3498db,
image: { url: imageUrl },
footer: { text: 'Powered by some-random-api.com' },
timestamp: new Date()
};
await interaction.editReply({ embeds: [animalEmbed] });
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to fetch animal image. The API might be down or the animal type is not available.",
ephemeral: true
});
2025-03-29 16:47:26 +01:00
}
break;
2025-03-29 16:47:26 +01:00
case "anime":
try {
await interaction.deferReply();
const action = interaction.options.getString("action");
let apiUrl;
let isQuote = false;
if (action === "quote") {
apiUrl = "https://some-random-api.ml/animu/quote";
isQuote = true;
} else {
apiUrl = `https://some-random-api.ml/animu/${action}`;
}
const response = await axios.get(apiUrl);
if (isQuote) {
// Handle quote response
const quote = response.data.sentence;
const character = response.data.character;
const anime = response.data.anime;
const quoteEmbed = {
title: "Anime Quote",
description: `"${quote}"`,
fields: [
{ name: "Character", value: character, inline: true },
{ name: "Anime", value: anime, inline: true }
],
color: 0xe74c3c,
footer: { text: 'Powered by some-random-api.ml' },
timestamp: new Date()
};
await interaction.editReply({ embeds: [quoteEmbed] });
} else {
// Handle GIF response
const gifUrl = response.data.link;
const actionTitle = action.charAt(0).toUpperCase() + action.slice(1).replace('-', ' ');
const gifEmbed = {
title: `Anime ${actionTitle}`,
color: 0xe74c3c,
image: { url: gifUrl },
footer: { text: 'Powered by some-random-api.ml' },
timestamp: new Date()
};
await interaction.editReply({ embeds: [gifEmbed] });
}
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to fetch anime content. The API might be down or the requested action is not available.",
ephemeral: true
});
}
break;
case "checkdns":
try {
await interaction.deferReply();
const domain = interaction.options.getString("domain");
const provider = interaction.options.getString("provider") || "1.1.1.1";
const dns = require('dns');
const resolver = new dns.Resolver();
resolver.setServers([provider]);
resolver.resolve4(domain, async (err, addresses) => {
if (err) {
const dnsEmbed = {
title: "DNS Lookup Result",
description: `Domain: ${domain}\nProvider: ${provider}`,
color: 0xFF0000,
fields: [
{
name: "Status",
value: "❌ Domain is blocked or unreachable",
inline: true
},
{
name: "Error",
value: err.code,
inline: true
}
],
timestamp: new Date(),
footer: { text: "DNS Check Service" }
};
await interaction.editReply({ embeds: [dnsEmbed] });
} else {
const dnsEmbed = {
title: "DNS Lookup Result",
description: `Domain: ${domain}\nProvider: ${provider}`,
color: 0x00FF00,
fields: [
{
name: "Status",
value: "✅ Domain is accessible",
inline: true
},
{
name: "IP Addresses",
value: addresses.join('\n'),
inline: true
}
],
timestamp: new Date(),
footer: { text: "DNS Check Service" }
};
await interaction.editReply({ embeds: [dnsEmbed] });
}
});
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to perform DNS lookup. Please check the domain name and try again.",
ephemeral: true
});
}
break;
case "traceroute":
2025-03-29 21:40:36 +01:00
try {
await interaction.deferReply();
const target = interaction.options.getString("target");
const maxHops = interaction.options.getInteger("hops") || 30;
const { exec } = require('child_process');
2025-03-29 21:34:25 +01:00
exec(`traceroute -m ${maxHops} ${target}`, async (error, stdout, stderr) => {
2025-03-29 21:40:36 +01:00
const output = stdout || stderr || 'No response';
const traceEmbed = {
2025-03-29 21:40:36 +01:00
title: "Traceroute Results",
description: `Target: ${target}\nMax Hops: ${maxHops}\n\n\`\`\`\n${output}\`\`\``,
color: 0x3498db,
timestamp: new Date(),
footer: { text: "Network Diagnostics" }
};
await interaction.editReply({ embeds: [traceEmbed] });
});
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to perform traceroute. Please check the target and try again.",
ephemeral: true
});
}
break;
case "whois":
try {
await interaction.deferReply();
const domain = interaction.options.getString("domain");
const result = await whois(domain);
const whoisEmbed = {
title: `WHOIS Lookup: ${domain}`,
color: 0x2ecc71,
fields: [
{
name: "Registrar",
value: result.registrar || "Not available",
inline: true
},
{
name: "Creation Date",
value: result.creationDate ? new Date(result.creationDate).toLocaleDateString() : "Not available",
inline: true
},
{
name: "Expiration Date",
value: result.expirationDate ? new Date(result.expirationDate).toLocaleDateString() : "Not available",
inline: true
},
{
name: "Name Servers",
value: Array.isArray(result.nameServers) ? result.nameServers.join('\n') : "Not available"
},
{
name: "Status",
value: Array.isArray(result.status) ? result.status.join('\n') : (result.status || "Not available")
}
],
timestamp: new Date(),
footer: { text: "Domain Information Service" }
};
await interaction.editReply({ embeds: [whoisEmbed] });
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to fetch WHOIS information. Please check the domain name and try again.",
ephemeral: true
});
}
break;
case "stats":
try {
await interaction.deferReply();
const os = require('os');
// Calculate uptime
const uptime = process.uptime();
const days = Math.floor(uptime / 86400);
const hours = Math.floor((uptime % 86400) / 3600);
const minutes = Math.floor((uptime % 3600) / 60);
// Get system info
const memUsage = process.memoryUsage();
const cpuLoad = os.loadavg();
const statsEmbed = {
title: "Bot Statistics",
color: 0x7289DA,
fields: [
{
name: "Bot Info",
value: [
`**Servers:** ${client.guilds.cache.size}`,
`**Users:** ${client.users.cache.size}`,
`**Channels:** ${client.channels.cache.size}`,
`**Commands:** ${slashCommands.length}`
].join('\n'),
inline: true
},
{
name: "System Info",
value: [
`**Platform:** ${os.platform()}`,
`**Memory Usage:** ${Math.round(memUsage.heapUsed / 1024 / 1024)}MB`,
`**CPU Load:** ${cpuLoad[0].toFixed(2)}%`,
`**Node.js:** ${process.version}`
].join('\n'),
inline: true
},
{
name: "Uptime",
value: `${days}d ${hours}h ${minutes}m`,
inline: true
}
],
timestamp: new Date(),
footer: { text: "blahaj-srv" }
};
await interaction.editReply({ embeds: [statsEmbed] });
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to fetch statistics.",
ephemeral: true
});
}
break;
case "checkport":
try {
await interaction.deferReply();
const target = interaction.options.getString("target");
const ports = interaction.options.getString("ports").split(",").map(p => parseInt(p.trim()));
const net = require('net');
const checkPort = (port) => {
return new Promise((resolve) => {
const socket = new net.Socket();
socket.setTimeout(2000); // 2 second timeout
socket.on('connect', () => {
socket.destroy();
resolve({ port, status: 'open' });
});
socket.on('timeout', () => {
socket.destroy();
resolve({ port, status: 'closed' });
});
socket.on('error', () => {
socket.destroy();
resolve({ port, status: 'closed' });
});
socket.connect(port, target);
});
};
const results = await Promise.all(ports.map(port => checkPort(port)));
const scanEmbed = {
title: `Port Scan Results for ${target}`,
color: 0x00ff00,
fields: results.map(result => ({
name: `Port ${result.port}`,
value: result.status === 'open' ? '🟢 Open' : '🔴 Closed',
inline: true
})),
timestamp: new Date(),
footer: { text: "Network Security Scanner" }
};
await interaction.editReply({ embeds: [scanEmbed] });
} catch (error) {
console.error(error);
await interaction.editReply({
content: "Failed to perform port scan. Please check the target and port numbers.",
ephemeral: true
});
}
break;
}
}});
2025-03-29 16:47:26 +01:00
client.login(process.env.DISCORD_TOKEN);