1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-18 00:31:00 -05:00

Compare commits

..

No commits in common. "cc7e8882d42bc2813e0a05a58e2bca217f869201" and "076ab5036a0d319f7ff3d7b1ebbb45672002fae4" have entirely different histories.

3 changed files with 1 additions and 33 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
.env .env
ips.txt
# Yarn stuff # Yarn stuff
.yarn .yarn
# TypeScript stuff # TypeScript stuff

View File

@ -130,7 +130,7 @@ export async function requestServerData(client:TClient, server:IServer):Promise<
if (data.status === 200 ?? 204) return data; if (data.status === 200 ?? 204) return data;
else if (data.status === 404) Logger.console('log', loggingPrefix, `(${i+1}/${maxRetries}) ${server.serverName} responded with an error (404), API is disabled or mismatched code`) else if (data.status === 404) Logger.console('log', loggingPrefix, `(${i+1}/${maxRetries}) ${server.serverName} responded with an error (404), API is disabled or mismatched code`)
} catch(err) { } catch(err) {
Logger.console('log', loggingPrefix, `Couldn't get data for ${server.serverName}: ${err.message}`); Logger.console('log', loggingPrefix, `Couldn't get the data for ${server.serverName}: ${err.message}`);
} }
await new Promise(resolve=>setTimeout(resolve, 500)) await new Promise(resolve=>setTimeout(resolve, 500))
} }

View File

@ -1,31 +0,0 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Please run this script as root or sudo"
exit 1
fi
# Store the IP addresses in a file
IP_ADDRESSES_STORE="ips.txt"
# Scan the kernel log for IP addresses and store them in a file
dmesg | grep 'SRC=' | awk -F'SRC=' '{ print $2 }' | awk '{ print $1 }' | sort | uniq | head -n 5000 > "$IP_ADDRESSES_STORE"
# Initialize a counter for new IPs
new_ips=0
# Populate the UFW reject rule with the IP addresses collected from the kernel log
while IFS= read -r ip
do
# Check if the IP is already in the UFW rules
if ! ufw status | grep -q "$ip"
then
ufw reject from $ip
# Increment the counter
((new_ips++))
fi
done < "$IP_ADDRESSES_STORE"
echo "Done populating UFW reject rule"
echo "$new_ips IP addresses were added"
exit 0