본문 바로가기

[+] 유틸리티

줄 번호 매겨주는 perl 소스 코드 : Perl source code line number attached #!/usr/bin/perl use strict; use warnings; # made by MaJ3stY # ################################################################### my $line = 1; while () { printf("%d: %s", $line, $_); $line++; } ################################################################### 제가 perl 공부할때 잠깐잠깐 생각 났을때 짜본 것들 입니다. perl이 정말 간단하고 쓰기가 편하긴 하네요 ^^; 사용방법은 간단합니다. 같은 경로에 소스코드와 대상파일을 넣고 소스코드를 컴파일 시켜주시면 됩니다. Perl is what .. 더보기
라인 줄 수를 세어주는 perl 소스코드 : Count the number of line to line perl source code #!/usr/bin/perl system("cls"); system("dir"); # made by MaJ3stY # ################################################################### print "Filename Input(ex : 123.txt) : "; chomp($filename = ); if ( -e $filename ) { print "$filename Exist!!!!\n"; }else{ print "$filename No!!!\n"; } open INPUT, "$filename" or die "$filename file open error : $! "; while() { $linecnt++; } close INPUT; print "Lin.. 더보기
IP Scanner 같은 네트워크망에 살아있는 아이피와 호스트를 스캔 해주는 도구 입니다. 사용법은 간단합니다. 자신이 스캔하고 싶은 아이피의 범위를 정해주고 시작버튼을 눌러 주시면 됩니다. Live on the same IP network and the host is a tool to scan. How is simple. They want to scan a range of IP, please click the Start button, and will be determined. 더보기
URLlist 웹 사이트 스캐너 입니다. 비디오와 함께 첨부할테니 참고하시고 테스트용으로 사용해보세요~ 쓰는 용도에 따라 무기가 될수도 있고 방패가 될수도 있습니다. Web site is a scanner. See the attached video and I'll Try and test for ~ Depending on the weapon could be used and can be a shield. 더보기
FreeHttpSniffer 제가 자주 사용하는 스니퍼 입니다. 간단하면서 보여줄건 다 보여주는 스니퍼 입니다. 악성코드가 삽입된 홈페이지를 스니핑 해보면 악성코드 url까지 캡쳐하여 보여줍니다. To show that everything is simple and sniffer. Malicious code inserted sniffing website url malicious code to try to capture shows. 더보기