• Seth hack source code leaked!
    370 replies, posted
[QUOTE=fruxodaily;36088548]Keep uploading his shit, that's what.[/QUOTE] Oh yeah absolutely. DDoS'ing will only make it worse for him. Also any Russian FP'ers here? 'Cause uploading it to Russian (or east European) websites pretty much means it will never be taken down (seriously, for illegal stuff you can search far and wide with every engine on the planet and find nothing, but go on Google and change the result language to Russian et voilà, first result).
[url]http://navalrp.co.uk/owncloud/apps/files_sharing/get.php?token=168069939486fb32c62df591a75765bbcd67f378[/url] Yet another mirror
[QUOTE=Trumple;36089028]According to this: [url]http://forum.sethhack.net/threads/8175-how-long-does-it-take-for-u-to-get-your-seth-hacks[/url] His name is: Seth Nolan-McDonough And apparently his DOX (not taking credit for this, I just found the link to the pastebin in a google search): [url]http://pastebin.com/[/url] NB I don't condone harassing him or anything of the sort, but it might be of interest for someone to contact him to reason with him (perhaps Garry and Seth can come to some agreement)[/QUOTE] posting his personal info isnt really going to make anything easier...... also are we still doing this? [url]http://thepiratebay.se/torrent/7301793/Seth_leak_v4.3_source_code.txt[/url]
[QUOTE=VistaPOWA;36088379]The shit?! The torrent file got removed from TPB. Say WHAAAAAAAAAAAAAAAAAAAAAT[/QUOTE] How does that even happen?
That imbecile just isn't giving up yet, is he?
Holy fuck Seth is stupid. If he wouldn't DDOS us, it would probably just slip through quietly like it often happens. Now, thanks to his DDOS his code has spread over all corners of the internet.
I'm going to wait for Seth to bawl to Stan about how he needs more power and [I]then[/I] I'll point and laugh. Edit: Facepunch is loading slowly for me already heh
Can someone put it on a new pastebin? [editline]Edited:[/editline] Didn't realise it was on the second post
Who is Stan?
[QUOTE=MaxOfS2D;36089218]Who is Stan?[/QUOTE] I believe he made the DDOS tool
[QUOTE=gman_beeman;36089200]Can someone put it on a new pastebin?[/QUOTE] [url=http://pastebin.com/z4ZSaNPZ]This one[/url] still works.
Ooh CloudFlare has a DDos protection! Good to know.
[QUOTE=juGGa;36089373]Ooh CloudFlare has a DDos protection! Good to know.[/QUOTE] well it doesn't seem to work
[QUOTE=MaxOfS2D;36089448]well it doesn't seem to work[/QUOTE] I think it was just enabled as my PC just got "checked" for the first time since this started. And FP seems stable now.
[QUOTE=MaxOfS2D;36089448]well it doesn't seem to work[/QUOTE] CloudFlare can only handle so much, if it tries to take the entire brunt of a large DRDoS and one its nodes is overwhelmed then it wouldn't just be Facepunch that gets taken down.
Another mirror: [url]http://bit.ly/SethHack[/url]
Here's a tutorial on how to run the leak code, since it's not very useful right now. Create a new folder in your "addons/" folder, name it "sethhack" or some shit. Create a text file called "info.txt" and in it copy and paste this: [code] "AddonInfo" { "name" "obviously baconbot" "version" "" "up_date" "" "author_name" "" "author_email" "" "author_url" "" "info" "" } [/code] Now in your "sethhack" folder, create the folder "lua", and in that the folder "autorun", and in that the folder "client". Now in your "client" folder, create a lua file named "dix.lua" or some shit like that, and put this code into it: [lua] dixVar = CreateConVar( "dix_log", 1 ); dix = dix or {}; dix.RunString = dix.RunString or RunString; dix.fileRead = dix.fileRead or file.Read; dix.fileWrite = dix.fileWrite or file.Write; dix.fileAppend = dix.fileAppend or file.Append; dix.EyeAngles = dix.EyeAngles or EyeAngles; dix.RunConsoleCommand = dix.RunConsoleCommand or RunConsoleCommand; local function log( str ) if not dixVar:GetBool() then return end print( str ); end function SH_SETCVAR( cvar, val ) log( "[SH] Tried to set convar \""..cvar:GetName().."\" to \""..val.."\"." ); dix.RunConsoleCommand( cvar:GetName(), val ); end function SH_PURECC( command ) log( "[SH] Ran raw console command, \""..command.."\"." ); dix.RunConsoleCommand( command ); end function SH_LUARUN( str ) log( "[SH] Ran lua string." ); dix.RunString( str ); end // Changes host_timescale. function SH_SETSPEED( speed ) log( "[SH] Attempted to change \"host_timescale\" to \""..speed.."\"." ); end // Gets UCMD number. function SH_COMMANDNUMBER( speed ) log( "[SH] Attempted to grab ucmd number, returned bogus number." ); return math.random( 1, 200 ); end function SH_ISDORMANT( entindex ) log( "[SH] Attempted to check if entity ["..entindex.."] is dormant, return false." ); return false; end SH_MODVER = 23; function SH_READFILE( filename ) log( "[SH] Read file \""..filename.."\"." ); return dix.fileRead( "sh_files/"..filename ); end function SH_WRITEFILE( filename, dat ) log( "[SH] Wrote to file \""..filename.."\".\n > "..dat ); return dix.fileAppend( "sh_files/"..filename, dat ); end function SH_SUPPRESSIPLOGS( bool ) if ( bool ) then log( "[SH] IP logging enabled." ); else log( "[SH] IP logging disabled." ); end end function SH_RUNSCRIPTS( ) log( "[SH] Attempted to run scripts in script folder." ); end SH_REGISTRY = {}; function SH_REGREAD( key ) log( "[SH] Read from registry, key = \""..key.."\"." ); return dix.fileRead( "sh_registry/"..key..".txt" ); end function SH_REGWRITE( key, dat ) log( "[SH] Wrote to registry, key = \""..key.."\"." ); return dix.fileWrite( "sh_registry/"..key..".txt", dat ); end function hl2_ucmd_getprediction( cmd ) log( "[SH] Attempted to predict recoil, returned bogus info." ); return math.random( 1, 100 ), math.random( 1, 100 ); end function SH_hl2_ucmd_getprediction( cmd ) log( "[SH] Attempted to grab prediction values, returned bogus info." ); return math.random( 1, 100 ), math.random( 1, 100 ); end function hl2_shotmanip( seed, angle ) log( "[SH] Attempted to calculate recoil, returned bogus info." ); return dix.EyeAngles():Forward(); end function SH_hl2_shotmanip( seed, angle ) log( "[SH] Attempted to calculate recoil, returned bogus info." ); return dix.EyeAngles():Forward(); end include( "autorun/client/dix/sh.lua" );[/lua] The above code is just an emulator for the binary module, it allows you to run SH. Consequences of this is that the antirecoil does not work. Then in your "client" folder, create a folder named "dix". In your "dix" folder, create a lua file named "sh.lua". In "sh.lua", copy and paste the sethhack leak. If anyone wants, they can upload a zip file of all the folders and lua files already made. I'm not going to.
mirrored [url]http://sebsauvage.net/paste/?50477c8452b0c65c#wJ17BjbwAKKzYcps7A83Ro5YtQsPUhwEnHYjZgBwmOw=[/url]
why would we want to run the leaked code? wouldn't that flag us in garry's cheater list?
[QUOTE=MaxOfS2D;36089561]why would we want to run the leaked code? wouldn't that flag us in garry's cheater list?[/QUOTE] nope, it doesn't bypass scriptenforcer. it's mostly for people who want to develop anticheats.
[t]http://f2.braxupload.se/kajjae.f9702bc851d3414c31a8a1c13e99f65e.png[/t] :)))
[QUOTE=jomt1234;36089607][t]http://f2.braxupload.se/kajjae.f9702bc851d3414c31a8a1c13e99f65e.png[/t] :)))[/QUOTE] haha fuck :v: [img]http://f2.braxupload.se/nz7zyl.png[/img]
Did garry just added some anti-ddos stuff? It feels like everything runs just fine, and if it's true I want to see seths face right now, bet he's pissed that his ddos doesn't affect anymore :v:
I bet he's throwing a fucking hissy fit right now
[url]http://www.sendspace.com/file/mowfjz[/url] [url]http://www.freefilehosting.net/sethhackv4[/url] [url]http://www.crocko.com/C070055DC4F84BD78BEA311D595E4533/sethhackv4.lua[/url] [url]http://limelinx.com/files/7e48b64c2846dd4a6ed1bcb8c62b96bb[/url] [url]http://filesave.me/file/17732/sethhackv4-lua.html[/url] [url]http://www.filebanker.com/mobt5vCH[/url] [url]http://www.uploadmb.com/dw.php?id=1338061429&/sethhackv4.lua[/url] [url]http://www.datafilehost.com/download-5b369144.html[/url] [url]http://www.peejeshare.com/files/362125112/sethhackv4.lua.html[/url] [url]http://www.freehostina.com/ktc33xioupl7.html[/url] [url]http://www.megafileupload.com/en/file/352560/sethhackv4-lua.html[/url] [url]http://www.wikiupload.com/5H319NYFT4MND1Y[/url] [url]http://glumbouploads.com/6zu6hqkwintb[/url] [url]http://www.fast-files.com/getfile.aspx?file=53866[/url] [url]http://kiwi6.com/file/nq09h5bin7[/url] [url]http://www.fileswap.com/dl/huG31PuCac/sethhackv4.lua.html[/url] [url]http://www.axifile.com/en/77FC1EBBC5[/url] [url]http://www.uploadstation.com/file/ZqUbPfb/sethhackv4.lua[/url] [url]http://megaswf.com/f/2436119[/url] [url]http://www.smallfiles.org/download/620/sethhackv4.lua.html[/url] [url]http://www.filesend.net/download.php?f=81f908424f04e9b869a8594b42fd4bfc[/url] [url]http://www.uploadmb.com/dw.php?id=1338062405[/url] [url]http://www.files2net.com/files/44027378968950/sethhackv4.zip[/url] [url]http://www.megashare.com/4275706[/url] [url]http://www.go4file.net/download/153/sethhackv4.lua.html[/url] [url]http://www.filebox.com/indx9sns1i3l[/url] [url]http://qshare.com/get/1046874/sethhackv4.lua.html[/url] [url]http://depositfiles.com/files/dvt6u8ogq[/url] [url]http://www.badongo.com/file/27167262[/url] [url]http://www.rapidshare.ru/2833990[/url] [url]http://upload-il.net/en/9AD9294378[/url] [url]http://netload.in/datei2XXMBzxA8n/sethhackv4.lua.htm[/url] [url]http://www.share-online.biz/dl/5XQ3CN4MGS5[/url] [url]http://www.load.to/EoGBtC5XNP/sethhackv4.lua[/url] [url]http://www.file-upload.net/download-4392031/sethhackv4.lua.html[/url] [url]http://www.flameupload.com/download/0FFDUPLN/sethhackv4.lua[/url] [url]http://www.midupload.com/f2rgg3g3bj2u[/url] I'm pretty sure this is every free file hosting website in existence..
Haha, wow... I don't think he can take them all down. GG Seth
[QUOTE=acds;36089079]Oh yeah absolutely. DDoS'ing will only make it worse for him. Also any Russian FP'ers here? 'Cause uploading it to Russian (or east European) websites pretty much means it will never be taken down (seriously, for illegal stuff you can search far and wide with every engine on the planet and find nothing, but go on Google and change the result language to Russian et voilà, first result).[/QUOTE] I am Russian but I can't think of a website to upload it to [editline]26th May 2012[/editline] Uploading it to yandex.ru (Most popular russian search engine/filehosting/mail service)
I'm just wondering something... why did it get leaked only now and not prior? Because it sounds like it could have been deceptively easy to just purchase it like that
[QUOTE=commandhat;36089185]I'm going to wait for Seth to bawl to Stan about how he needs more power and [I]then[/I] I'll point and laugh. Edit: Facepunch is loading slowly for me already heh[/QUOTE] Ironically today is the one day Facepunch isn't being Slowpunch for me today.
[QUOTE=rinoaff33;36089826]Ironically today is the one day Facepunch isn't being Slowpunch for me today.[/QUOTE] That's because a lot of the people who are normally on think it's still down. for now
Sorry, you need to Log In to post a reply to this thread.