본문 바로가기

전체 글

(29)
netstat -ano 1 |findstr "string"결과를 알아보기 쉽게 바꾸기(feat.bat파일) netstat -ano 1 |findstr "string" 명령어의 단점 : 출력 결과가 구분없이 반복되어 보기가 힘듬 이에 아래와 같이 메모장에 입력 후 확장자를 bat로 저장 후 실행 *[string] 부분에는 찾을 문자열 @echo off :return C:₩Windows₩System32₩netstat -an |findstr "[string]" timeout 1 goto return
자음+한자키 특수 문자목록 ㄱ+한자키 ㄴ+한자키 ㄷ+한자키 ㄹ+한자키 ㅁ+한자키 ㅂ+한자키 ㅅ+한자키 ㅇ+한자키 ㅈ+한자키 ㅊ+한자키 ㅋ+한자키 ㅍ+한자키 ㅌ+한자키 ㅎ+한자키
Mac address finder https://www.adminsub.net/mac-address-finder MAC address/vendor lookup and search - look up MAC address, identify MAC address, check MAC adress - adminsub.net www.adminsub.net https://macvendors.com/ MAC Address Lookup Find the manufacturer of a device by its MAC address. macvendors.com
TCP UDP Port Finder https://www.adminsub.net/tcp-udp-port-finder Online TCP UDP port finder - adminsub.net www.adminsub.net
서브넷 계산기 https://www.subnet-calculator.com/ Online IP Subnet Calculator 100% Secure IP Subnet Calculator The IP Subnet Mask Calculator enables subnet network calculations using network class, IP address, subnet mask, subnet bits, mask bits, maximum required IP subnets and maximum required hosts per subnet. Results of the subnet calculatio www.subnet-calculator.com
vim 사소한 팁 1. vi 진입상태에서 number line 출력/미출력 :set nonumber :set number 2. vi 진입시 항상 number line 출력(계정마다 설정) 1 [root@localhost tmp]# echo "set number" >> ~/.vimrc cs 3. vi 사용중 shell 전환 Ctrl + z 다시 vi로 전환시 #fg [번호] (보통은 1) 4.
su 사용 계정 제한 1. /etc/pam.d/su 파일 수정(pam 모듈 미사용시 2번부터) -아래와 같이 7번째 "#auth required pam_wheel.so use_uid"에서 #부분 삭제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [root@localhost ~]# cat /etc/pam.d/su #%PAM-1.0 auth sufficient pam_rootok.so # Uncomment the following line to implicitly trust users in the "wheel" group. #auth sufficient pam_wheel.so trust use_uid # Uncomment the following line to require a user to be in the..
CentOS 7 +python3 web crawling 순서 1. Python3 설치 1 yum -y install python3 cs 2. Selenium + bs4 + telegram 설치 1 2 3 4 pip3 install -U pip pip3 install beautifulsoup4 pip3 install selenium pip3 install python-telegram-bot --upgrade cs 3. chrome 설치 1 yum -y install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm cs 4. chromedriver 다운로드 + 위치이동 (https://sites.google.com/chromium.org/driver/) 1 2 3 wget https..