- Install Python (if not already installed)
Check if Python is installed:
python3 --version
Forwarding and Pivoting can be a confusing topic. I still get headache's sometimes trying to keep track of what i did to get to this port, and how im gonna get a reverse shell back to that subnet and whatnot. This is just a quick writeup attempting to show the differences in the main types of forwards and pivots, as well as what works for me.
For the purpose of this tut, im gonna set a few static ip's that ill stick with til the end
LHOST = 192.168.1.1
| /* not it using @nebular, this must reside outside of @include nb-install-component() {..} */ | |
| ::ng-deep .modal-content { | |
| /* change border */ | |
| border: none; | |
| /* change background */ | |
| background-color: red !important; | |
| } |
This info page relates to the DLR values which are returned by kannel when requesting DLR. Some SMPP related information is also listed for reference.
This [send-sms][1] parameter is used to request for delivery reports with the state of the sent message. This requires the [dlr-url][1] on sendsms-user group or use the dlr-url CGI variable to be set. The value is a bit mask composed of:
| Value | Description |
|---|
| @echo off | |
| echo Delete Folder: %CD% | |
| setlocal | |
| :PROMPT | |
| set /P AREYOUSURE=Are you sure (Y/[N])? | |
| if /I "%AREYOUSURE%" NEQ "Y" goto END | |
| echo Removing Folder: %CD% | |
| set FOLDER=%CD% | |
| cd / |
| 0039.cf | |
| 0039.ga | |
| 0039.ml | |
| 007addict.com | |
| 00b2bcr51qv59xst2.cf | |
| 00b2bcr51qv59xst2.ga | |
| 00b2bcr51qv59xst2.ml | |
| 020.co.uk | |
| 02466.cf | |
| 02466.ga |
WITH OIDS to the CREATE statment since kannel expects old PostgreSQL behaviour.created_at to keep track of old DLR. DLR entries are automatically removed by kannel once the final dlr is received from the SMSC. In cases where this message is not received, the DLR will not be removed. A cron job can be setup to remove old DLR by comparing the current time to created_at.CREATE TABLE dlr (
smsc VARCHAR(48),
ts VARCHAR(48),
destination VARCHAR(48),
tcpdump -A -i any 'port 1333 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
The example above captures all TCP traffic at port 133 and filter out the TCP session setup (SYN / FIN / ACK)
-A Print each packet (minus its link level header) in ASCII. Handy for capturing web pages.-i any Include all interfacesport 1333 Only look at TCP traffic to/from port 1333(((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0) filter out the TCP session setup (SYN / FIN / ACK)| set GOARCH=amd64 | |
| set GOOS=linux | |
| set NOW=%date% %time% | |
| rem save the results from 'git describe --tags --dirty --always' to variable 'GINFO' | |
| for /f %%i in ('git describe --tags --dirty --always') do set GINFO=%%i | |
| rem set var GitInfo & var BuildDate in the go code | |
| go build -ldflags "-X 'main.GitInfo=%GINFO%' -X 'main.BuildDate=%NOW%'" -o ./bin/gw |