전체 글
Hi,
-
Eclipse를 설치하기 앞서 JDK가 설치되지 않으셨다면 JDK 먼저 설치해야한다. [JAVA/Windows 10 pro] JDK 1.9 설치 / 환경 변수 설정 https://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform Oracle customers are changing the world. Let’s celebrate these successes at the CloudWorld party as the legendary Steve Miller.. p-ssw0rd.tistory.com JDK 설치가 되어있는지 확인 방법은 cmd에 아래 명령어를 통해 알수있다. java -version 이클립스 홈페이지 접속 https://www.ecl..
[Windows 10 pro] Eclipse 2022-09 설치Eclipse를 설치하기 앞서 JDK가 설치되지 않으셨다면 JDK 먼저 설치해야한다. [JAVA/Windows 10 pro] JDK 1.9 설치 / 환경 변수 설정 https://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform Oracle customers are changing the world. Let’s celebrate these successes at the CloudWorld party as the legendary Steve Miller.. p-ssw0rd.tistory.com JDK 설치가 되어있는지 확인 방법은 cmd에 아래 명령어를 통해 알수있다. java -version 이클립스 홈페이지 접속 https://www.ecl..
2022.09.29 -
https://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform Oracle customers are changing the world. Let’s celebrate these successes at the CloudWorld party as the legendary Steve Miller Band takes the stage. Secure your spot by registering for Oracle CloudWorld in Las Vegas, October 17–20. www.oracle.com 1. JDK 1.9 설치 오라클에 접속 후 계정을 만듭니다. 스크롤을 내리다 보면 보이는 Oracle JDK 클릭 exe 파일 다운로드 후 실행..
[JAVA/Windows 10 pro] JDK 1.9 설치 / 환경 변수 설정https://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform Oracle customers are changing the world. Let’s celebrate these successes at the CloudWorld party as the legendary Steve Miller Band takes the stage. Secure your spot by registering for Oracle CloudWorld in Las Vegas, October 17–20. www.oracle.com 1. JDK 1.9 설치 오라클에 접속 후 계정을 만듭니다. 스크롤을 내리다 보면 보이는 Oracle JDK 클릭 exe 파일 다운로드 후 실행..
2022.09.26 -
302 리다이렉션은 수많은 네트워크 보안솔루션들을 우회하기 위해 등장한 변종 기법이다. 301 Moved Permanently ( 영구 이동 ) 요청한 페이지가 새 위치로 영구적 이동 시 사용된다. (GET 또는 HEAD 요청에 대한 응답으로 이 응답이 사용되면, 요청자는 자동으로 새 위치로 이동됨) 302 Temporarily Moved ( 임시 이동 ) 현재 서버가 다른 위치의 페이지로 요청에 응답하고 있지만, 요청자는 향 후 요청 시 원래 위치를 계속 사용해야 할 시 사용된다. (임시 이전의 경우 사용 되며, POST가 GET으로 바뀜) 307 Temporary Redirect (임시 리다이렉션) 현재 서버가 다른 위치의 페이지로 요청에 응답하고 있지만, 요청자는 향 후 요청 시 원래 위치를 계속 ..
[HTTP 30x ERROR]302 리다이렉션은 수많은 네트워크 보안솔루션들을 우회하기 위해 등장한 변종 기법이다. 301 Moved Permanently ( 영구 이동 ) 요청한 페이지가 새 위치로 영구적 이동 시 사용된다. (GET 또는 HEAD 요청에 대한 응답으로 이 응답이 사용되면, 요청자는 자동으로 새 위치로 이동됨) 302 Temporarily Moved ( 임시 이동 ) 현재 서버가 다른 위치의 페이지로 요청에 응답하고 있지만, 요청자는 향 후 요청 시 원래 위치를 계속 사용해야 할 시 사용된다. (임시 이전의 경우 사용 되며, POST가 GET으로 바뀜) 307 Temporary Redirect (임시 리다이렉션) 현재 서버가 다른 위치의 페이지로 요청에 응답하고 있지만, 요청자는 향 후 요청 시 원래 위치를 계속 ..
2022.09.26 -
// 기존 코드 function userInfo(suburl) { const url = location.origin + '/' + suburl; return fetch(url).then( (res) => { return res; } ); } async function sumOfFetch(array) { const user = await userInfo(array); if (user.status === 200) { console.log(user) } } const item = ['install','ROOT','add','balancer','dav','deploy','examples','examples/jsp/index.html','examples/jsp/snp/snoop.jsp','examples/jsp/..
[TOMCAT] 디렉터리 찾기 코드// 기존 코드 function userInfo(suburl) { const url = location.origin + '/' + suburl; return fetch(url).then( (res) => { return res; } ); } async function sumOfFetch(array) { const user = await userInfo(array); if (user.status === 200) { console.log(user) } } const item = ['install','ROOT','add','balancer','dav','deploy','examples','examples/jsp/index.html','examples/jsp/snp/snoop.jsp','examples/jsp/..
2022.09.23 -
# 사용하지 않으면 중복된 값이 뜰 때 오류가 생긴다 cat /root/.john/john.pot rm /root/.john/john.pot # md5로 암호화된 것 확인 cat /etc/shadow | grep root # passwd파일과 shadow 파일을 합쳐서 /tmp/password.txt.로 저장 unshadow /etc/passwd /etc/shadow > /tmp/password.txt # crype : 유닉스/리눅스에서 사용 가능 // wordlist : 레인보우 테이블 개념 # python이라는 계정의 비밀번호 1234 복원 // root라는 계정의 비밀번호 1234 복원 john --format=crypt --wordlist=/usr/share/john/password.lst /tm..
JtR(John the Ripper) 기초# 사용하지 않으면 중복된 값이 뜰 때 오류가 생긴다 cat /root/.john/john.pot rm /root/.john/john.pot # md5로 암호화된 것 확인 cat /etc/shadow | grep root # passwd파일과 shadow 파일을 합쳐서 /tmp/password.txt.로 저장 unshadow /etc/passwd /etc/shadow > /tmp/password.txt # crype : 유닉스/리눅스에서 사용 가능 // wordlist : 레인보우 테이블 개념 # python이라는 계정의 비밀번호 1234 복원 // root라는 계정의 비밀번호 1234 복원 john --format=crypt --wordlist=/usr/share/john/password.lst /tm..
2022.09.23 -
실습사이트의 주소가 ec2로 시작하는것을 보고 AWS를 사용해 제작한 사이트임를 파악할 수 있었다. 해당 로고를 아래 핑크 마법모자 로고로 변경하려 한다. 해당 페이지에서 로고에 오른쪽 클릭을 해 새 탭에서 이미지 열기로 이미지 주소를 확인한다. 이 이미지 주소는 https://qwer-1.s3.ap-northeast-2.amazonaws.com/logo.jpg 였으므로 AWS S3내에 있는 이미지인것을 확인할 수 있다. 위 주소에서 https://qwer-1.s3.ap-northeast-2.amazonaws.com를 입력시 나오는 XML 소스코드이다. 소스코드를 확인하면 s3에 logo.jpg가 있음을 확인 할 수있다. 윈도우 aws cli를 통해 해당 이미지를 변경하고자 한다. windows에 cli..
[Windows] AWS S3 및 데이터 변경실습사이트의 주소가 ec2로 시작하는것을 보고 AWS를 사용해 제작한 사이트임를 파악할 수 있었다. 해당 로고를 아래 핑크 마법모자 로고로 변경하려 한다. 해당 페이지에서 로고에 오른쪽 클릭을 해 새 탭에서 이미지 열기로 이미지 주소를 확인한다. 이 이미지 주소는 https://qwer-1.s3.ap-northeast-2.amazonaws.com/logo.jpg 였으므로 AWS S3내에 있는 이미지인것을 확인할 수 있다. 위 주소에서 https://qwer-1.s3.ap-northeast-2.amazonaws.com를 입력시 나오는 XML 소스코드이다. 소스코드를 확인하면 s3에 logo.jpg가 있음을 확인 할 수있다. 윈도우 aws cli를 통해 해당 이미지를 변경하고자 한다. windows에 cli..
2022.09.16