본문 바로가기

자료실/소도구

자신의 SIP계정 알아내는 프로그램입니다-mylg070용

http://www.codito.de/prog/SIPcrack-0.2.tar.gz

리눅스용 프로그램입니다...컴파일 해야 합니다..다른분들이 컴파일해서 올려주실수도 있고...

능력껏 사용하시길...

포함된 설명서에 약간의 주석을 추가하였습니다.

 

 

/****************USAGE_EXAMPLES*******************/

Using sipdump in combination with pcap packet dump files
--------------------------------------------------------

------- 일단 이더넷 패킷을 스니핑 해야 합니다.

------- 이부분은 환경에 따라서 너무 많은 차이가 나기 때문에 뭐라 설명하기 어렵군요...

 

여기서부터는 일단 패킷을 pcap-capture.txt 파일에 저장되어 있다고 가정하고 진행합니다.

-------- sipdump 프로그램은 pcap파일에서 로그인 정보를 찾아서 logis.dump 라는 파일을 만들어 줍니다.

Passing capture file to sipdump to search for sniffed logins:

$ sipdump -p pcap-capture.txt logins.dump

 

------- 암호리스트를 만듭니다. john이라는 툴을 사용합니다.
Using SIPcrack in combination with John the ripper
--------------------------------------------------

John the ripper:  http://www.openwall.com/john/

Make a fifo file pipe:

$ mkfifo myfifofile

------- 파일로 만들어도 되지만 너무 큽니다. 그래서 fifo로 만듭니다.

 

Start john using the desired settings. Below is an example which
generates passwords with max 8 letter length and only contains
alpha characters.
Using > redirect johns output into the fifo file you just created:

$ john --incremental=alpha --stdout=8 > myfifofile

----- 위의 예에서는 알파벳으로 된 1~8자리까지  된 암호리스트를 myfifofile에 저장합니다.

-----  --incremental=digit --stdout=6 으로 설정합니다..

----- 위에처럼 하면 숫자로만 6자리 암호 리스트를 만듭니다.

Start sipcrack and use the fifo file pipe as the wordlist source:

$ sipcrack -w myfifofile logins.dump

----- 여기까지 하면 끝...

John has some great permutation algorithm which also enhances your
wordlist files by permutate some letters and numbers. This allows you
to have a smaller wordlistfile.

See John's homepage at http://www.openwall.com/john/doc/EXAMPLES.shtml
for more examples. But dont forget to redirect output into the fifo
file pipe.


'자료실 > 소도구' 카테고리의 다른 글

[필수] 압축툴-7zip  (0) 2009.05.12
패스터핑-네트웍 속도를 빠르게..  (0) 2009.04.20
아이뎁 1.4_10.5.6_leosx  (0) 2009.03.16