Jump to content

soulbleed

Active Members
  • Posts

    36
  • Joined

  • Last visited

Posts posted by soulbleed

  1. This is really old. The game is Call of Duty: United Offensive. Died a ton, but was as close as I've ever seen anyone get to 300. Had to uninstall the game because I was banned from every populated server for "cheating".

    78226343-4.jpg

    2mdm3x2.jpg

    LoL

  2. Are there any free tools that allow you to profile the hardware on a remote host given it's IP address, over the Internet? The reason I ask, is because a lot of game servers providers lie about the hardware they run, and was thinking about switching hosting providers if the hardware and reviews are as good as they say.

    Thanks

  3. Is there anywhere on the site, or any chance of adding one; a complete RSS feed containing all the episodes? The reason I ask is because I use SageTV to stream all my media from my computer to my TV. It has options where you can add custom Podcasts. It would be nice to have a complete listing of all the Hak.5 episodes on demand with a click of the remote button.

    Thanks,

    Tony

  4. Most of you have probably read the great hacking books published by FoundStone. But, if you haven't, check them out. Anyway, I was on their website just now and noticed they have a ton of nice tools, and hacking webcasts. They've also got applications called Hackme's that simulate a banks, or eStore website, that have built in vulnerabilities that allow you to practice things such as SQL injection or CSS attacks. They are essentially hacking challenges.

    Check out the website at foundstone.com

  5. how do people manage to hack online browser based text games?

    some people on there hacked it and i want to know how, i googled it and everything

    all of them said it was very hard and even packet editing wouldnt work (whatever that is)

    XSS

  6. Digip, here's the batch version.

    @echo off
    setlocal enableextensions
    
    if "%1" == "" (
      echo.
      echo Usage: %~n0 [Host name]
      goto :eof
    )
    ping -n 1 %1 > nul
    if errorlevel 1 (
      echo Host not found or not alive && goto :eof
    )
    
    for /f "tokens=2 delims=[]" %%f in ('ping -n 1 %1') do (
      for /f "tokens=1-4 delims=." %%a in ("%%f") do (
        set octet=%%a
        set octet1=%%b
        set octet2=%%c
        set octet3=%%d
      )
    )
    
    findstr "'%skip%VBS" "%~f0" > %temp%tmp$$$.vbs
    cscript //nologo %temp%tmp$$$.vbs %octet% %octet1% %octet2% %octet3% > %temp%tmp$$$.bat
    
    call %temp%tmp$$$.bat
    echo. & echo %1 in binary = %bin_%.%bin_1%.%bin_2%.%bin_3%
    set /a int=(%octet% * 16777216) + (%octet1% * 65536) + (%octet2% * 256) + (%octet3%)
    echo %1 as integer = %int%
    echo %1 as IP address = %octet%.%octet1%.%octet2%.%octet3%
    
    for %%f in (%temp%tmp$$$.vbs %temp%tmp$$$.bat) do (
       if exist %%f (
         del %%f
       )
    )
    endlocal & goto :eof
    '
    number=Wscript.Arguments.Unnamed(0)                'VBS
    base=2                                'VBS
    digit="0123456789ABCDEF"                    'VBS
    result=""                            'VBS
    while number <> 0                        'VBS
      i = number -base * int(number/base)                'VBS
      result = mid(digit,i+1,1) & result                'VBS
      number= int(number/base)                    'VBS
    Wend                                'VBS
    Wscript.Echo "@set bin_=" & Right("000000000" & result ,8)    'VBS
    
    number1=Wscript.Arguments.Unnamed(1)                'VBS
    base1=2                                'VBS
    digit1="0123456789ABCDEF"                    'VBS
    result1=""                            'VBS
    while number1 <> 0                        'VBS
      i = number1 -base1 * int(number1/base1)            'VBS
      result1 = mid(digit1,i+1,1) & result1                'VBS
      number1= int(number1/base1)                    'VBS
    Wend                                'VBS
    Wscript.Echo "@set bin_1=" & Right("000000000" & result1 ,8)    'VBS
    
    number2=Wscript.Arguments.Unnamed(2)                'VBS
    base2=2                                'VBS
    digit2="0123456789ABCDEF"                    'VBS
    result2=""                            'VBS
    while number2 <> 0                        'VBS
      i = number2 -base2 * int(number2/base2)            'VBS
      result2 = mid(digit2,i+1,1) & result2                'VBS
      number2= int(number2/base2)                    'VBS
    Wend                                'VBS
    Wscript.Echo "@set bin_2=" & Right("000000000" & result2 ,8)    'VBS
    
    number3=Wscript.Arguments.Unnamed(3)                'VBS
    base3=2                                'VBS
    digit3="0123456789ABCDEF"                    'VBS
    result3=""                            'VBS
    while number3 <> 0                        'VBS
      i = number3 -base3 * int(number3/base3)            'VBS
      result3 = mid(digit3,i+1,1) & result3                'VBS
      number3= int(number3/base3)                    'VBS
    Wend                                'VBS
    Wscript.Echo "@set bin_3=" & Right("000000000" & result3 ,8)    'VBS

    The VBScript could be in a for loop, but since I don't know any VBScript, (except what I learned writing this script) I didn't know how to do it.

×
×
  • Create New...