Warden Private Server Script menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,828
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Think I found an easy fix for check 3.

    Code:
    for n in pairs(getfenv()) do ToList(n) end
    1) Log before loading any hacks/bots
    2) run again when warden calls Execute or GetText
    3) diff both lists and search new values (really slow? dumped over 23100 values)
    4) if found replace with junk string
    5) run diff again, see if they created any new entries with that script, if so add to list 1


    Improvements or any better idea?


    Code:
    local function IsDetected(text)
    	local _isDetected = false;
    
    	for n in pairs(getfenv()) do 
    		if(n == text) then
    			_isDetected = true;
    			break;
    		end
    	end
    	if (_isDetected) then
    		ToConsole("DETECTED: YES")
    	else
    		ToConsole("DETECTED: NO")
    	end
    end
    
    IsDetected("script_grind"); --YES
    IsDetected("youknownothings"); --NO
    IsDetected("IsDetected"); --NO
    way too slow... cant do in lua I guess
    Code:
    if gBaseTable == nil then
    	gBaseTable = {};
    	local tIndex = 0;
    	for n in pairs(getfenv()) do 
    		gBaseTable[tIndex] = n;
    		tIndex = tIndex + 1;
    	end
    	ToConsole("SETUP DONE " .. tIndex); 
    else
    	for n in pairs(getfenv()) do
    		local _found = false;
    		for _index, _text in pairs(gBaseTable) do
    			if(n == _text) then
    				_found = true;
    				break;
    			end
    		end
    		if _found == false then
    			ToConsole("NEW " .. n); 
    		end
    	end
    end
    Last edited by DarkLinux; 02-18-2018 at 04:39 AM.

    Warden Private Server Script
  2. #17
    macintelk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by reliasn View Post
    I've been monitoring Warden packets for a while now and this is the entire list of strings that I have saved in my database: Paste2.org - Viewing Paste wDYINatW
    reliasn can you please share howto retrive this info? would be great to build a scan tool

  3. #18
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,828
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by macintelk View Post
    reliasn can you please share howto retrive this info? would be great to build a scan tool
    Hooks on wardens packet handler? It's relatively simple.

  4. #19
    bone91's Avatar Sergeant Major
    Reputation
    91
    Join Date
    Feb 2008
    Posts
    156
    Thanks G/R
    17/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    @danwins
    My point was I could go write that to public chat and get other users flagged. I would hope they have a filter to not broadcast selected messages. Unless you cant send such colors.
    Client doesn't allow for colored text messages (with the exception of item links) past vanilla (it was in TBC for a while, but not 2.4.3).
    Servers would need to implement their own filter, but none of them have afaik.

  5. #20
    macintelk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just played a bit with this code

    Code:
    if(rcsbn==nil and CastSpellByName~=nil)then 
    rcsbn=CastSpellByName 
    CastSpellByName=function(a) 
    local d=debugstack(2) 
    if(strfind(d,"Secure")==nil) then 
    print("omg")
    end 
    rcsbn(a) 
    CastSpellByName=rcsbn 
    rcsbn=nil 
    end 
    end
    testing CastSpellByName, RunMacroText, etc (managed to get a ban on wowcircle while running on a unlocked env)


    Dark maybe this code help on var check?
    Code:
    if not  _G2 then 
    print("reading _G")
    _G2={}
    for k,v in pairs(_G) do
    _G2[k]=k
    end
    end
    
    print("----DIFF LIST------")
    local c=0
    local c1=0
    if _G2 then
    for k,v in pairs(_G) do
    c1=c1+1
    if not _G2[k] then
    c=c+1
    print(tostring(select(2,issecurevariable(k))).. " - "..k);
    end
    end
    end
    print(c1.." vars Diff "..c)
    the 'nil' output lists secure vars
    Last edited by macintelk; 03-23-2018 at 03:28 PM.

  6. #21
    yung1's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did anyone get anywhere with this?

  7. #22
    kenpachi1's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a 3.3.5 trinity server, but I cant make warden run any lua scripts

    I asked for help in this topic.
    Ant PQR Script - Help and Support - TrinityCore

    But I got no answers. Do you have any idea where can I find help or data to be able to make the 3.3.5 warden runs Lua script?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Selling] WoW Private Server scripts and hacks for 3.3.5a only
    By shook93 in forum WoW Private Server Buy Sell Trade
    Replies: 0
    Last Post: 08-13-2016, 06:44 AM
  2. Private server on another computer...detectable by Warden etc?
    By Poker4Living in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 09-11-2010, 09:48 AM
  3. Warden and Private Servers.
    By Innovative in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 05-22-2008, 06:48 PM
  4. New Private Server - Need Help with Scripting Please
    By Xerxe in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 04-14-2008, 09:02 AM
  5. Can Someone plese tell me a Private server that is instant 70 with scripted instances
    By SHelby4774 in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 04-10-2008, 11:22 AM
All times are GMT -5. The time now is 09:05 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search