Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Creating A Unblocker For School [4 More Questions!!!!]
Goto page Previous  1, 2
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
kickme93
Master Cheater
Reputation: 0

Joined: 24 Oct 2007
Posts: 461

PostPosted: Tue Dec 18, 2007 11:04 am    Post subject: Reply with quote

Ffs! My School Has Removed All The Original Start Programs (System Restore, Every Proxy Avaiable Etc)

Thats Why Im Makin A Unblocker


Questions
How Do I Make A Popup Blocker In Vb6 For KickFluf?
How Do I Make A Proxy Automaticly Load In KickFluf?
How Do I Make It Show The .swf For Games Such As Battleon, Mechquest Etc?
How Do I Show The .swf Link For Flash Games On Miniclip Etc?
Back to top
View user's profile Send private message
Trow
Grandmaster Cheater
Reputation: 2

Joined: 17 Aug 2006
Posts: 957

PostPosted: Tue Dec 18, 2007 4:25 pm    Post subject: Reply with quote

to show swf link:

Private Sub BrwDoc_onmousemove()
On Error Resume Next
Dim K As String
Set BrwEvent = BrwDoc.parentWindow.event
K = BrwDoc.elementFromPoint(BrwEvent.clientX, BrwEvent.clientY).getAttribute("Movie")
End Sub


I purposely left out what "BrwDoc" is...but i guess you can pretty much guess.

_________________
Get kidnapped often.
Back to top
View user's profile Send private message
kickme93
Master Cheater
Reputation: 0

Joined: 24 Oct 2007
Posts: 461

PostPosted: Tue Dec 18, 2007 4:36 pm    Post subject: Reply with quote

I Put That On Say A Label/Textbox Yeag?

BrwDoc Is KickFluf/ Web?
Back to top
View user's profile Send private message
Trow
Grandmaster Cheater
Reputation: 2

Joined: 17 Aug 2006
Posts: 957

PostPosted: Tue Dec 18, 2007 4:50 pm    Post subject: Reply with quote

my original source was put at "BrwDoc_onmousemove" where BrwDoc is a browser document object

Not sure if that works on any other languages though

_________________
Get kidnapped often.
Back to top
View user's profile Send private message
kickme93
Master Cheater
Reputation: 0

Joined: 24 Oct 2007
Posts: 461

PostPosted: Thu Dec 20, 2007 1:49 am    Post subject: Reply with quote

But What Is BrwDoc?

I Only Have The Back,Refreash,Forward Button Renamed
Back to top
View user's profile Send private message
mase35
Newbie cheater
Reputation: 0

Joined: 06 Jan 2007
Posts: 11
Location: N/A

PostPosted: Thu Feb 14, 2008 6:47 pm    Post subject: Reply with quote

Blader wrote:
If your school blocks certain domains, then find the server IP address of the site and try loading that. To find the ip, you could use search the site in an ip-viewer website (Not sure if these exist) or you could use plugins on your current internet browser to get the website server information.


http://www.selfseo.com/find_ip_address_of_a_website.php, thats the ip finder i use
Back to top
View user's profile Send private message AIM Address Yahoo Messenger
XxOsirisxX
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Oct 2006
Posts: 1597

PostPosted: Thu Feb 14, 2008 7:29 pm    Post subject: Reply with quote

I'm doing the same on my university, so far i been make a webbrowser that loads a not-blocked proxy web site, then in any case, it also delete the history cause it's the reason of blocks, also, i did end proccess of any kind of program that theys use. The internet is based on 1 "domain" which is protected by St.Bernart. And at regedit i can edit anything at User but i can't on Policies, whihc contains the not allowed craps.


And lol, just saw the web site of the unblock, my proxy is https, but meebo is'nt.. how to?

_________________

Back to top
View user's profile Send private message
FerrisBuellerYourMyHero
Master Cheater
Reputation: 0

Joined: 14 Feb 2007
Posts: 401
Location: Inside your <kernel>

PostPosted: Fri Feb 15, 2008 2:07 pm    Post subject: Reply with quote

kickme93 wrote:
Our School Has Like Every Program Possible Cracked (Fluffy, Fluffy Edited)

And So On, Theve Removed Every Program Such As The Cmd Registry In Accesories And Replace The Whole Thing With New Files Such As Maths Shared Area Etc, Theve Blocked Everything.

So I Aim On Getting It Back!
Doing Some Testing Today On A Prototype Version



I bet you they haven't blocked EVERYTHING...

when I used to goto school, they blocked the cmd prompt... cmd.exe

but its simple to bypass...

create a text file

now you have "New Text Document.txt"

open it and type:

Code:

start c:\windows\system32\command.com


or whatever drive has windows on it... if its not c:

then rename the file to "something.bat" or "something.cmd"

run it!!!!
tada! you've now got a command prompt!

lol my school thought they had me on that one! but they didn't

Then for the fun part I would schedule a task to send popup messages to all the computers saying "its clickin time boys and girls"

lol and it was so fun everyone was clickin messages boxes and the teacher couldn't figure out who was doing it! (because by that time I had already gotten off the computer, lol the scheduled task was doing it all by itself)

and the teacher would think its other kids who are on the computer at that time... and everyones like its not me!!!!

well any way heres how to do it! the "messenger" service has to be running, and so does the "task scheduler"

from your command prompt type "net start"

and make sure both "Messenger" and "Task Scheduler" appear on the list...

if not don't fret! just type
Code:

net start "task scheduler"

or
Code:

net start "messenger"


if one or both of them aren't running... so that you can pull it off [ at my school I didn't have to do this, they were already running]

next im sure the school disabled the GUI task scheduler... but you can still use it from the command prompt

I scheduled mine to happen every 6 minutes lol! but at a start time like 10 minutes after I got off the computer to lower suspicion Wink


heres how you schedule a task
Code:

schtasks /Create /RU student /RP 1234 /SC MINUTE /MO 6 /TN CLICKtime /TR c:\secret\timetoclick.bat /ST 13:20:00 /SD 02/15/2008


/RU is the username /RP is password [you need to know the username and password or the scheduled task will fail to run, my school told me them] ->

example: /RU student /RP 1234

but if you don't know the password, OR ONE ISN'T CREATED, then the task wont run... there needs to be an account with a password for a scheduled task to run... its security with windows xp...

theres a solution that will work if you don't know the password... create a new account! Smile yes this can also be done from the command prompt!

example:
Code:

net user LeetHax password /ADD /active:yes /expires:never


that will create a user named "LeetHax" with password "password"


/SC is the frequency... minute is good enough right? your not on the comp that long... /MO tells it every 6 minutes /tn is just the task name, can be anything

/tr is the path to the task you want to run... I made a hidden directory in the main drive[which was c:] and created my batch file there...

/st is start time, its in military time, so youll have to think for a second if its past 12:00:00 AM... example 1:25 PM would be 13:25:00 [make this time after you've already gotten off the computer! its even better if someone else gets on the computer you were on hehe]

finally /SD is start date make it the same day... so you'll see the results that day...[because who wants to wait] if it where today it would be 02/15/2008

the task is then scheduled... but you should make the batch file first...

heres what you put in it:

inside timetoclick.bat
Code:

title L337ness
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)
net send * Message Here To Send EVERYONE!! :)


what I like to do is write one line, copy it, the paste a few lines, copy that then paste more lines lol! and make it one huge batch file with like 100 popups

now at the start time you chose, it the batch file will popup on the computer and start sending all those 100 messages.... , then every six minutes following that it will popup again and send more messages



and it creates a cool effect when everyone's like WTF?? eventually kids figure out that they can just move it to the side, and continue working but at first they click there ass off lol! Wink

I know what you may be thinking, if someones on the computer or sees the computer that has the batch file running they can close it and it wont send all the messages... yes that is true... but you can hide the window when it pops up with some simple code:

I call it, Window Magic:


Source code:
Code:

#include "windows.h"
#include <iostream>
using namespace std;
char Wnd[256];
HWND HideWnd, StoredWnd, WndMagic;
int Hidden = 0, HideTheWindow = 1;

void HideThread(void)
{
   OutputDebugStringA("Thread Created!");
   for(;; Sleep(10))
   {
      if(HideTheWindow == 1)
      {
         HideWnd = FindWindowA(0, Wnd);

         if(HideWnd > 0)
         {
            StoredWnd = HideWnd;
            ShowWindow(HideWnd, SW_HIDE);
         }
      }
   }
}

void GetWndName(void)
{
   memset((void*)Wnd, 0, 256);
   cout<<"\n  WindowName: ";
   cin.getline(Wnd, 256);
}

int main(void)
{
   SetConsoleTitleA("Window Magic 1.0 - By Ferris");
   system("color F0");

   cout<<"\n Welcome to Window Magic 1.0"<< endl;
   cout<<" Type the window name you wish to hide, then press F12 to hide this window"<< endl;
   cout<<" When the window appears, this will immediately hide it :)"<< endl;
   cout<<" Press F12 again to make this window re-appear"<< endl;
   cout<<" Then F11 to show the hidden window, and enter a new window name"<< endl;

   WndMagic = FindWindowA(0, "Window Magic 1.0 - By Ferris");

   GetWndName();
   CreateThread(0, 0, (LPTHREAD_START_ROUTINE)&HideThread, 0, 0, 0);

   for(;; Sleep(10))
   {
      if(GetAsyncKeyState(VK_F12))
      {
         if(Hidden == 0)
         {
            ShowWindow(WndMagic, SW_HIDE);
            Hidden = 1;
            Sleep(250);
         }
         else
         {
            ShowWindow(WndMagic, SW_SHOW);
            Hidden = 0;
            Sleep(250);
         }
      }
      if(GetAsyncKeyState(VK_F11))
      {
         if(Hidden == 0)
         {
            HideTheWindow = 0;
            ShowWindow(StoredWnd, SW_SHOW);
            cout<<"\n  Type a New Window Name->"<< endl;
            GetWndName();
            HideTheWindow = 1;
         }
      }
   }

   return 1;
}



and EXECUTABLE attached:

lol yeah school was fun Razz

as for the proxy thing

proxy's never worked for me at school... BUT what does work[worked for me]

setting up an HTTP Tunnel...

it works like this, you set up the server on your home computer, and you set up the client on your school computer...

then get a program like FreeCap, on the school computer and set it up to a port on the tunnel client!

what your doing is actually using your internet connection at home, but at school... because your home doesn't block the sites you want to visit, but the school does... so you get around the firewall by using your own internet connection from home...

That way is best if you can figure out how to set it up! Wink

but if your lazy an easier way would be

UltraVNC... set up the server at home... and bring in a viewer client to school...

its a small little file you can bring in on your usb driver or a CD or whatever... or Download from somewhere u upload[if not blocked]
its called "tabbed vnc viewer.exe"

make sure from your house that you forward the port you set the server up at [if you have a router] or you won't be able to connect from school or anywhere else... This method actually lets you ON your computer so if someone is on your computer while your at school this is not an option for you...

those are the two best methods of bypassing... proxies just don't work



The Extension 'rar' was deactivated by an board admin, therefore this Attachment is not displayed.


_________________
You know, life moves pretty fast. If you don't stop and look around once in a while, You could miss it!

Back to top
View user's profile Send private message MSN Messenger
Trow
Grandmaster Cheater
Reputation: 2

Joined: 17 Aug 2006
Posts: 957

PostPosted: Fri Feb 15, 2008 9:07 pm    Post subject: Reply with quote

my school has disabled scheduler and logs users' login times along with multiple surveillance cameras. yeah - so they know who logged in even if you try and mask your name and mask your task time because they know who set it at a past time

(rls is solution to school hacking)

_________________
Get kidnapped often.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites