I've made 2 scripts that already do what you've mentioned. all 3 use python 3.11.3
This 3rd script will rename any file starting with "xyz" to "whatever you want keep blank for nothing."
from importlib.metadata import files
import os
path = r"your file directory here."
files = []
for...
Releasing both a FurnitureData and SQL generator for Arcturus DB.
Make sure to have python 3.11.3 installed both are scripts so will need to be ran in console.
SQL Generator:
import os
try:
with open("test.txt", "a") as f:
pass
except FileNotFoundError:
with open("test.txt"...
Appreciate the kind words on the staff side of it, that was mainly me. The discord lockdown wasn't my idea i only wanted to lock certain channels inside of the discord that would require user verification. (this was after I had left.) Retros nowadays don't have the connection between staff and...
Co-owned a hotel that went from 5-10 users to 40-50 users. (Youhab)
The community isn't divided, there just isn't really a place that makes users feel safe. "custom features" side of retros dont actually matter at all. We made people feel involved in the future of the retro such as the economy...
The Covid vaccine never went through the same trials as other vaccines. Source; https://wellcome.org/news/quick-safe-covid-vaccine-development on average it takes anywhere from 2-15 years. Comparing cancer to covid is just mind-blowing. Cancer is a mutation in your cells which your body (when a...
Save data for games in majority of cases are saved in hexadecimal so; 1a 6f 45 40 ect.
All save editors do is alter the bytes. Let's say a tutorial for a game is 1a and if completed tutorial it would change to a 1b the game would call on the save data and the portion of code and from the byte...
Layer 7 attacks don't attack the vps directly but more of the program that is hosting the files eg; IIS/Apache.
You need to filter out the requests that your receiving, you should be able to do this on the iis settings page by only allowing connection requests x amount of times before it...
Cms is pulling information from the users table when it should be pulling from user_currency. If what they have typed is true regarding to other posts you need to direct the cms to pull from the user_currency table not the users table.
Ill reiterate abit more. If the users information eg...
SQL injection isn't normally EMU side. (there are other attacks that used to involve attacking an emu directly but the majority of these have already been fixed in updated emus.)
There are different type of injection attacks you have the standard injection method where you query yourself or...
Go to your database you'll see a query option at the top sorry haven't used navicat in a while click that insert that query.
For the PHP error try updating your php version i believe you have the wrong version.
Turn strict mode off for the db errors. Run this query; SET @@global.sql_mode= '';
Also the error is pretty bog standard it does say whats wrong, try posting the file code via pastebin. instead of just pasting an error.
Deny the request. Check your apache log files the ip(s) should be in there.
The attacks should look like GET requests inside of the file all the requests should be asking for the same file do not block ones that are requesting SWFS which you can read by reading the full line. Normally they'll...
Line 7 in that file is:
$dbh = new PDO('mysql:host='.$db['host'].':'.$db['port'].';dbname='.$db['db'].'', $db['user'], $db['pass']);
This line is basically asking for information from brain-config.php so something is wrong in there.
Make sure you're username and password for the MySQL server...
His post was confusing and if you check some of the packet ids they conflict as using the same ID.
Copy and paste this https://github.com/dank074/PlusEMU/blob/nitro-ws/Communication/Packets/Incoming/ClientPacketHeader.cs back into the file. The error posted was one of the packets was using 4000...
Edit changed what i said delete line 225 and rebuild the solution. This error could have been fixed on you're own. If you look at
public void RegisterNames()
{
_packetNames.Add(ClientPacketHeader.GetClientVersionMessageEvent, "GetClientVersionEvent")...