As an Aviation enthusiast and pilot (I had to say it) flying in Canada, I often need to analize the Canadian VFR (Visual Flight Rules) map.
There is few ways to do that online:
adb shell pm path com.the.app adb pull /data/app/com.the.app/base.apk apktool d ../base.apk
apktool b base zipalign -v 4 base/dist/base.apk base-backup.apk jarsigner –verbose –sigalg SHA1withRSA -digestalg SHA1 -keystore ~/.android.keystore base-backup.apk …
As an Aviation enthusiast and pilot (I had to say it), I had to take the opportunity to setup a little ADS-B receiver.
"ADS-B" stands for "Automatic Dependent Surveillance–Broadcast".
Basicaly, airplanes equipped with an ADS-B Out are broadcasting informations like their speed, altitude, heading by radio on 1090MHz. In …
Hosting its own email server takes a lot of time to setup, maintain and troubleshoot. I own my domain name and use it for emails since more that 20 years and used different ways to to it. There is a lot of good providers like Gmail, Protonmail but they can …
In today's rapidly changing world, rebooting computers become more and more difficult. Here is a little brutal program to reboot an x86 computer.
/* cc -o reboot reboot.c */
/* ./reboot */
#include <sys/io.h>
void main(void) {
iopl(3);
outb(6, 0xcf9);
}
(ncat comming from package nmap or ncat)
ProxyCommand /usr/bin/ncat --proxy-type http --proxy PROXY:PORT --proxy-auth PROXY_USER:PROXY_PASSWORD %h 22
ProxyCommand /usr/bin/ssh USER@HOP /bin/nc %h 22
keychain does the trick …
I wanted to do some proof of concept using a Pycom LoPy4 and a e-paper display (epd2in13V2).
Here is a nasty hack for sauerbraten to pull the trigger when you are aiming at opponent. It then shoot for nothing to let you not been too much accurate.
--- cube2-0.0.20130404+dfsg.orig/fpsgame/fps.cpp
+++ cube2-0.0.20130404+dfsg/fpsgame/fps.cpp
@@ -901,8 +901,19 @@ namespace …
This is a simple SMTP server. It listens for clients sending mails, then stores email into an mbox file and may send notifications to the desktop.
It's purpose is to provide a simple debugging tool for applications sending emails.
Based on the work of Grzegorz Adam Hankiewicz <gradha@efaber.net …
Trying to run Arachni on Debian.
I've been stuck a while trying to run Arachni 1.5.1-0.5.12 on Debian.
Arachni was starting and freeze after spawning the browsers.
The issue is discussed here: https://github.com/Arachni/arachni/issues/1022
Somebody named HanseSecure commended the following workaround …