Run like
> decode_saml_request.sh sample_data
Run like
> decode_saml_request.sh sample_data
<?php | |
$parsed = Router::parseRequest($this->request); | |
unset($parsed['_matchedRoute']); | |
echo $this->Html->link('Čeština', array_merge($parsed, ['lang' => 'cz'])); | |
echo ' | '; | |
echo $this->Html->link('English', array_merge($parsed, ['lang' => 'en'])); | |
echo ' | '; | |
echo $this->Html->link('French', array_merge($parsed, ['lang' => 'fr'])); | |
?> |
<?php | |
public function entityStripAssociations(Entity &$entity) | |
{ | |
/** @var Table $table */ | |
$table = TableRegistry::getTableLocator()->get($entity->getSource()); | |
foreach ($table->associations() as $asoc) { | |
$entity->unsetProperty($asoc->getProperty()); | |
} | |
return $entity; | |
} |
# picocom /dev/ttyUSB2 | |
ATI | |
Manufacturer: Sierra Wireless, Incorporated | |
Model: EM7455 | |
Revision: SWI9X30C_02.30.03.00 r7804 CARMD-EV-FRMWR2 2018/07/25 01:10:04 | |
MEID: -redacted- | |
IMEI: -redacted- | |
IMEI SV: 17 | |
FSN: LF818679700410 | |
+GCAP: +CGSM |
#!/usr/bin/python | |
import requests #you might need to install requests separatelly | |
import sys | |
from IPy import IP | |
import re | |
if len(sys.argv) == 1: | |
print "Usage: webvisu.py <target ip address> <folder with webvisu.htm and visu_ini.xml>" | |
sys.exit(0) |
#!/usr/bin/python | |
import requests #you might need to install requests separatelly | |
import sys | |
req = "|0|1|0|" + str(sys.argv[2]).replace(",","|") | |
addr = "http://" + str(sys.argv[1]) | |
print req | |
r = requests.post(addr + '/webvisu/webvisu.htm', data=req) |
# /etc/udev/rules.d/70-huawei-e3.conf | |
# Necessary for network interface name | |
SUBSYSTEM=="net", ACTION=="add", ATTRS{idVendor}=="12d1", ATTRS{idProduct}=="14dc", NAME="usb0" | |
# Might be duplicate to usb_modeswitch config, however it's good to have it there | |
ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="12d1", ATTRS{idProduct}=="1f01", RUN+="/usr/sbin/usb_modeswitch -c /etc/usb_modeswitch.d/huawei_e3.conf" |
[af.policy.r_submix_prio_adjust]: [0] | |
[af.rf_info]: [273] | |
[bgw.current3gband]: [0] | |
[camera.disable_zsl_mode]: [1] | |
[curlockscreen]: [1] | |
[dalvik.vm.dex2oat-Xms]: [64m] | |
[dalvik.vm.dex2oat-Xmx]: [512m] | |
[dalvik.vm.heapgrowthlimit]: [128m] | |
[dalvik.vm.heapsize]: [256m] | |
[dalvik.vm.image-dex2oat-Xms]: [64m] |