Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Some fun with batch filter_list
Author
Message
Some fun with batch #1
I recently watched a video that inspired me to make a cool batch file. Here is the video:

Anyways, I wrote a little script that will make it look like your doing crap. So here it is: https://dl.dropbox.com/u/18819048/Hack.bat Have fun you l33t h4x0r$!
Code:
@echo off
title Google Packet Sniffer
color a
echo Fetching Google File System
pause
tree
echo Ready to plant network packet intercepter
pause
echo Planting.
ping localhost -n 2 >nul
echo Planting..
ping localhost -n 2 >nul
echo Planting...
ping localhost -n 2 >nul
echo Planted! Ready to start recieving.
pause
:A
echo hash: fbnluiawghuiw;alghuivg;lnhuirlwAwrhgui;lzvhuihl
echo hash: ghp79uigfewtyhtlpo79rg3y79ovw9gh 53uli89ewghot;u298tg34t
echo hash: 54he9384686hb9368ey53qy53aeyh8udsyh7878dsg34otlga34hl789bdsrfeiul7few
echo hash: fnoji;34qtp3n b9hp8936byju739qpb 78t9563o9
echo hash: bkjgeoji90ubdf90.kjug7rotji3t034tjoi9p0tjiyj54oyi545yjip54y5j
echo hash: o;ighp593q;8np789g5p3qhv79f53qhg593;p589tyh5y74uwyhji80ghipoayh3ogp89
echo hash: h8;3gh89rawpghny9h9qp89ghnou9tgy34hqt4thn4o3hiqt74y3hqotu9834tg ou89yg53
echo hash: niov53ptghag3a5hnyo54u9y75hre89hftqy34h7tyho34i89t53hoit34tn34hiot34njkti
echo hash: vnjok4twhgr89auwgh34qut34ynh7g8reny789egnhuig7tjo34u7gfewonig7ewtkli34q7t
echo hash: jio53tguty0734uoqaitgrehuirgaey8iohrgud0gjykl6o54uyoi
echo hash: vn3489tqjn8935yhj5893thy536yhu56njbkjraeui34ytw89twtho34ait3oi8re
echo hash: vnoruety8934qt734y89greayghaoy34huo8fi7yghr89pg74a289p6fyghlueiwat97uy
echo hash: ovir7egujaiwog7;0wuj4iotg7awo7gyhawoi;tg7ewhaoit7gyohair7ethnhwgf89oityr
echo hash: oiwt4an34oipg97uj4noia79gujtm4n3pai90jgiarpw/4ol78tgujm3qa0[eat90oat78u
echo hash: n8943qtjn83agh0j5mntg8utjn3jag89o4ai3ty7u4hoiyay7u5ja3t894awnl
echo hash: joi340atujwpi0gutj53qiot7yahtopt89u5tjp5ihujf0diohjt8934tyg789f34h78
echo hash: noi43680gr789t34qjt789g34hutygro
echo hash: onjr37qty34h89t734yqhtop8934t7u34hiot0734t8io
echo hash: rghlayiwrgwhbuliwghrwhligiwhdfkjghuirgae8t34789rgeht34qyV
echo hash: hgfaewhluirgaehluirgaewdvfs78t478h7hyhut4ewt478bdgzfhuirew
echo hash: bkjrgaehluirgehluirgeshluirgaegnfy79t34yglir4bdzfhluir3we
echo hash: huiargey98p73q5y0ygh89w-ayh53qo9;p7hy89ph53q89pyguh8py9535q
echo hash: joigh;ru8 j5389pghybghrwot80pu3q4gho8bgh53ou89grwygho4;aut97ythgrw9
echo hash: hiov;53q9g8hr7a5qhglo978oq5ghp89qtg7eyhg5gj9re8gah4589ghboiwrygwg
goto :A

Reply

RE: Some fun with batch #2
You could make this a lot better if it didn't generate the same "Hashes" over and over again. Take for example what I just wrote a few minutes ago:

Code:
@ECHO OFF & SETLOCAL ENABLEDELAYEDEXPANSION
TITLE xHash Cracker & COLOR A

FOR /L %%G IN (1,1,3) DO (
    CALL :Waiting "Finding hashes. Please wait"
)

SET hashCount=1
:A
    CALL :WriteHash
    SET /A hashCount+=1
GOTO :A

PAUSE > NUL & GOTO :EOF

:WriteHash
    set alpha=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    SET hashSize=32

    SET output=
    SET count=0
    :Iteration
        SET /A tmp=%Random% %% 3 + 1
        IF %tmp% == 1 (
            SET /A num=%Random% %% 10
            SET output=!output!!num!
        ) ELSE (
            SET /A letter=!Random! %% 26
            SET /A upperCase= !Random! %% 2
            IF !upperCase! EQU 1 (
                SET /A letter+=26
            )
            SET output=!output!!alpha:~%letter%,1!
        )

        SET /A count+=1
    IF %count% LSS %hashSize% GOTO :Iteration
    ECHO %hashCount%. ^>Hash Value: !output! (Length: %hashSize%)
GOTO :EOF

:Waiting
    SET tmpString=%1
    SET tmpString=%tmpString:"=%
    SET dots=...

    FOR /l %%G IN (1,1,3) DO (
        CLS
        ECHO !tmpString!!dots:~0,%%G!
        PING localhost -n 2 -w 500 -l 5000 > NUL
    )
GOTO :EOF

[Image: ibgpgFAFbhh8h2.gif]
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply

RE: Some fun with batch #3
Wow, thanks for the tip. I'm sort of a newb to batch.

Reply

RE: Some fun with batch #4
Batch is fun...Alot of fun.
Grazie ora levati dal cazzo.



Reply







Users browsing this thread: 1 Guest(s)