Tag Archives: ssh

iOS 앱 보안진단을 위한 환경설정

  Notice : 해당 자료가 저작권등에 의해서 문제가 있다면 바로 삭제하겠습니다. 연구목적으로 사용하지 않고 악의적인 목적으로 이용할 경우 발생할 수 있는 법적은 책임은 모두 본인에게 있습니다. iOS 앱 보안진단을 위한 환경설정 iOS 앱 정적 분석하기(class-dump-z, clutch) Objective-C Runtime의 이해와 gdb … Continue reading

Posted in Objective-C/iPhone, Security/Hacking | Tagged , , , , | Leave a comment

CentOS 설치 후 작업

  CentOS 설치후 작업 1. 시작데몬 설정. ]# ntsysv sshd crond network syslog xinetd 만 빼고 모두 체크 해제한다. 재시작 한번 해준다. 2. DNS 설정 ]# vi /etc/resolv.conf nameserver 168.126.63.1 3. ssh 보안 설정 ]# vi /etc/ssh/sshd_config … # 앞에 … Continue reading

Posted in Security/Hacking, System | Tagged , , , , , , , , , | Leave a comment

SCP를 암호없이 사용 하기 / ssh 로그인 없이 접속하기

  SCP를 암호없이 사용 하기 / ssh 로그인 없이 접속하기 1. 두대의 서버 트러스트 관계 만들기 1) scp를 사용하여 자동으로 데이터를 복사하기 위해서는 두대의 머신이 트러스트(Trusted) 관계에 있어야 된다. 두대의 서버를 트러스트 관계로 만들기 위해서는 공개/개인 dsa 키 쌍을 생성하여 … Continue reading

Posted in System, Util/Tools | Tagged , , , , , , , , | Leave a comment

SSH port scan Script

  Notice : 해당 자료가 저작권등에 의해서 문제가 있다면 바로 삭제하겠습니다. 연구목적으로 사용하지 않고 악의적인 목적으로 이용할 경우 발생할 수 있는 법적은 책임은 모두 본인에게 있습니다. ssh port scan 소스 중 일부이다. 해킹당한 고객사 서버 점검 중 발견..(하여간 보안에 제발 … Continue reading

Posted in Python/Ruby/Perl, Security/Hacking | Tagged , , | Leave a comment

SSH 무작위 로그인 scan시도 차단 스크립트

  지겨운놈들.. 계속 공격 시도중… 경로 위치는 /usr/local/service/ ]# vi denyip.sh #!/bin/bash # Script by Yunkiman # Modified by icworld # Second Modified by dksniper(http://blog.naver.com/dksniper) # Convert oops-firewall to hosts.deny days=`date +%d` nowdir=`pwd` savedir=”$nowdir/denylist” cleanfile=”$nowdir/hosts.dat” cnt=0 if [ -e /var/log/secure … Continue reading

Posted in Security/Hacking, System | Tagged , | Leave a comment