|
Size: 357
Comment:
|
Size: 739
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| Shell examples | #acl All:read #lang en |
| Line 3: | Line 4: |
| == Sort IP adresses == | <<TableOfContents()>> = File operations = == Change files == Change the serial of a zone file. This is for BSD. |
| Line 5: | Line 10: |
| sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 }}} [[https://www.madboa.com/geek/sort-addr/]] == Scan PTR records == {{{ for i in `seq 1 254`; do host 192.168.1.$i 192.168.1.1; done |grep pointer |
sed -i '' 's/2020022301/2020022302/g' filename |
| Line 15: | Line 14: |
| Extract all files out of an image. | |
| Line 19: | Line 19: |
| = List operations = == Sort IP adresses == Sort a list of IP adresses. {{{ sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 }}} Thanks: [[https://www.madboa.com/geek/sort-addr/]] = Processes = |
|
| Line 20: | Line 29: |
| Kill your current process. | |
| Line 23: | Line 33: |
= Networking operations = == Scan PTR records == Do a reverse scan of an IP range. {{{ for i in `seq 1 254`; do host 192.168.1.$i 8.8.8.8; done |grep pointer }}} |
Contents
File operations
Change files
Change the serial of a zone file. This is for BSD.
sed -i '' 's/2020022301/2020022302/g' filename
Extract files
Extract all files out of an image.
binwalk --dd='.*' file.bin
List operations
Sort IP adresses
Sort a list of IP adresses.
sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4
Thanks: https://www.madboa.com/geek/sort-addr/
Processes
Kill processes
Kill your current process.
kill -9 $$
Networking operations
Scan PTR records
Do a reverse scan of an IP range.
for i in `seq 1 254`; do host 192.168.1.$i 8.8.8.8; done |grep pointer