Jump to content

MuNk

Active Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by MuNk

  1. Consoles: Nes, Snes, Master system, Master system II ,Megadrive, Megadrive II, MageCD II, Commador 64, bunch of Amigas, ZX 81, ZX 81+, ZX 128bit, ZX 80, some Ataris, Xbox, DreamCast, Xbox 360, Wii, GameBoy (brick), Nintendo DSLite. Gaming PC Q6600 @ 2.8ghz 6GIG OCZ Raptor memory 5-5-3-15 2x GeForce 8600GT SLI BFG OC2 please note the 17" TFT is connected to a EeeBox, the 20" is on the gaming rig.
  2. EEEBox Gaimg Rig Laptop and my lovly little home server =] (AMD Geode 1750x)
  3. Protecting your software.. EXECryptor, Armadillo, and Themida. can be unpacked with a ollydbg no skill really required. the best method is to make your own secure Crypter. Anti-VM, Anti-Sandbox, Anti-dbg are the 3 main catagorises that crypters used on bots/viruses/worms etc.. are designed for ,yourself you just need a Anti-dbg, you could just look at the info thats avalible from conflicker worm which has some simple but very effective code for detecting this stuff. Example code (delphi / inline asm) function OllyPresent() : boolean; begin asm mov Result,0 cmp esi,0FFFFFFFFh jne @@ollyEnd mov Result,1 @@ollyEnd: end; end; function InDebugger():boolean; begin OutputDebugString(PChar('Hi')); if GetLastError = 00000006 then Result := TRUE else Result := FALSE; end; Crypters work well, your program is encrypted and compressed inside the stub, the stub will have all sorts of anti-dbg code in it, thus this should make your program protected and safe. well to a level at least =]
  4. C++ Sleep command, made it for my NintendoDS as DevKitARM dont have a sleep command. void sleep(int secs) { int start = time(NULL); while ((time(NULL) - start) < secs) { //DO NOTHING! } } Delphi port procedure sleep(secs:integer); var start:integer; begin start:=time(nil); while (time(nil) - start) < secs) do begin //DO NOTHING! end; end;
  5. here is some basic on information. Botnets, mass majority these days are built by kids and are base on the same old source-code (reptile,shadow), granted there are the exceptions like conflicker.a/b/c which is 100% private/custom code. all botnets require a C&C (Command and Control), there are different types. most commonly used are IRC/HTTP , yes there are a few who use unique methods, ive seen one that was half udp half http. to build a bot is not a complex thing, anyone who can learn to make one, spreading/infection methods are the hard and most interesting parts, followed by how they keep the files undetected. last and most importantly NOT ALL botnets are used for DDoS, some are built as spamming networks, some work as HTTP servers for illicite content, some are proxybots (yes bot that install sock4/5 on your machine), there is other that are used for cracking password (distributed computing) but very few of them around or ever has been. then there are ones who do all of that and DDoS. This is about all you really need to know about botnets.
  6. Please remember this is not a rip off of Amish im triyng ot pass of as my own, the menu its self i made for my own personal use, but decided to share incase it might be usfull of others... and this was no desiged to collect passwords from multiple machines, its was done more of a tool box that can be used at the time on the pc you have current access to... / this is the Menu system ive made and put on my USBPen, it was orignaly made for when im in college and i need to do stuff, but would be blocked by a proxy or what ever, hope its of use to someone and use the PCInfo to get all stuff you would normaly get.. Download Link Hak5 Patch *this replaces Morgannwg with Hak5 ^^, hope you all like it* Side not this the part to gather infomation is based around Amish with a few extra's added to it, this was not intended for people who wanted to do things sneakily :) Application List :~ OpenOffice AbiWord Notepad++ VLC player mIRC *NoNamesScript* Gaim FireFox 7Zip uTorrent FTPWander Speedy *download manager* TSearch1.6 Ollydug ResEditor TCPView TCPTools *forgot other name for it* Putty VNC Viewer FastPush Cain WinCap Installer DX-Ball *fun and addictive little game* PCInfo, will run the Package to gather Passwords etc.. total Size 350MB Uncompressed / 160MB Compressed
×
×
  • Create New...