Petruknisme's Feed
167 subscribers
55 photos
2 videos
11 files
1.15K links
This channel is dedicated for my blog feed and interesting resources that I think useful to share.

Topic: Reverse Engineering, Exploit Development, Hacking/Pentesting, Development or some random stuff

https://petruknisme.com

Contact: @petruknisme
Download Telegram
Dumping All Indices from Elasticsearch

npm install elasticdump -g

# Dump Elastic from one server to another server

elasticdump --input=http://elasticserver:9200/my_index --output=http://slave-elasticserver:9200/my_index --type=[mapping|analyzer|data]

# Dump Elastics from one server to json file

elasticdump --input=http://elasticserver:9200/my_index --output=my_index.json --type=[mapping|analyzer|data]


https://github.com/taskrabbit/elasticsearch-dump
Ignore SSL Certificate when using git

git -c http.sslVerify=false clone https://github.com/user/gitrepo
[FREE] The Beginner's Guide to IDAPython by Alexander Hanel
https://leanpub.com/IDAPython-Book

If you want to support the author, please make a donation :)
Extract data from PST\OST File in Linux

readpst -rS username@sub.domain.com.ost
pcasm-book.pdf
1 MB
pcasm-book.pdf
DarkSideofRussia.pdf
1.9 MB
Share 'DarkSideofRussia.pdf'
Petruknisme's Feed
Photo
SHA224 collision
SimpleHTTPServer in Python3 for serving file when doing Pentesting

↳ python3 -m http.server 80
Serving HTTP on 0.0.0.0 port 80 (http://0.0.0.0:80/) ...


#tips #pentesting
This guide is an introduction to basic and advanced concepts of the bash shell.

It teaches both newcomers and long-time users the best, safest and most robust ways of writing powerful bash scripts as well as making efficient and speedy interactive use of the shell.

https://guide.bash.academy/
Packettotal (Just like virustotal but for PCAP Analysis): https://packettotal.com/
Using Socks Proxy inside Burp Suite from SSH Tunneling

ssh user@server-ip -NfD <port>

After that, setting socks proxy under User Options like this picture.

↳ netstat -tulpn
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:8081 0.0.0.0:* LISTEN -


#tips