Wednesday, December 21, 2016

Friday, December 16, 2016

Bless Hex Editor For Linux

Bless Hex Editor for Linux
http://home.gna.org/bless/

Thursday, December 15, 2016

Burp Suite

https://portswigger.net/burp/

https://portswigger.net/burp/

Wednesday, October 05, 2016

Ruby Links

Great Ruby Tutorial:
https://www.tutorialspoint.com/ruby/

C42 Initiatives

  • Requirements Cross Referencing Via Ruby/Cucumber
  • JVM Usage In Conjunction With Ruby/Cucumber

Monday, September 19, 2016

Jasimine -- Bahavior Driven Javascript

Jasmine Base Link:
http://jasmine.github.io/

Jasmine on GitHub:
https://github.com/jasmine/jasmine

Example Java/Cuke Execution

C:\data\svn-work\proj-0014-jvm-cucumber-pmg>java -jar target/pmg-tests-1.0-SNAPSHOT.jar support/test-suites/mid-injection.json support/features
Test Suite File: [support/test-suites/mid-injection.json] Feature File Base Dir: [support/features] Run Dir: [support/run/20160919133009-885/]
Executing Feature File : [support/run/20160919133009-885/run.feature]
Cucumber Plugin Value 1: [junit:support/run/20160919133009-885/run-output.xml]
Cucumber Plugin Value 2: [json:support/run/20160919133009-885/run-output.json]

Tuesday, August 30, 2016

API Testing With Curl / Postman

Curl base link:
https://curl.haxx.se/

Curl Github link:
https://github.com/curl/curl

Postman (Chrome app) base link:
https://www.getpostman.com/

Monday, August 22, 2016

Adding Ubuntu Box To 802.1X Network Without Using GUI

Per: http://www.nowiressecurity.com/#!configure-8021x-authentication-linux/coxb -- add something like this to the /etc/network/interfaces file for wired eth0:

# The eth0 network interface
auto eth0
iface eth0 inet dhcp
pre-up wpa_supplicant -B -i eth0 -D wired -c /etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant

The "pre-up" entry (above) will allow the interface to be brought up automatically on rebooting without the need to use a GUI dialog box.

Here are the key entries in the /etc/wpa_supplicant.conf file that I used:

ctrl_interface=/var/run/wpa_supplicant

eapol_version=2

ap_scan=0

network={
        key_mgmt=IEEE8021X
        eap=PEAP
        identity="ACCOUNT NAME HERE"
        password="PASSWORD HERE"
        eapol_flags=0
}

Monday, July 18, 2016

Friday, July 01, 2016

Monday, June 27, 2016

App Inventor (maintained by MIT now)

App Inventor (maintained by MIT now)
http://appinventor.mit.edu/explore/

Friday, June 03, 2016

Thursday, June 02, 2016

Android GPS Apps

One of the best Android apps for injecting GPS points into an emulated device and displaying via offline, tiled maps is:

"GPS Essentials"

A simple Android app to just display GPS coordinates is, you guessed it:

"GPS Coordinates"

Wednesday, May 25, 2016

Android Studio - Installation

Android Developer Base Link
https://developer.android.com/index.html

Android Studio Installation
https://developer.android.com/studio/install.html

Android Emulator

Howto Install and Run the Android Emulator
http://www.petefreitag.com/item/763.cfm

Howto Disable Authentication For Telnet To Android Emulator Console
https://developer.android.com/studio/run/emulator-commandline.html

Thursday, April 21, 2016

Auth0 Base Link

Auth0 Base Link
https://auth0.com/

Friday, April 08, 2016

Tuesday, April 05, 2016

AWS SDK for Java

AWS SDK for Java
https://aws.amazon.com/sdk-for-java/

JMeter

JMeter Base Link
http://jmeter.apache.org/

Monday, March 14, 2016

Saturday, February 20, 2016

Backups Using OTP

Here's how we roll:
  • 00000-clear.dat (ZIP) consists of
    • md5sum.txt (of data.ZIP)
    • data.ZIP
  • 00000-ct.dat (cipher text of 00000-clear.dat)
  • 00000-otp.dat (one time pad used to create 00000-ct.dat)
Example Implementation:

Cryptomni 1.1

Thursday, February 04, 2016

GPX Parser (Java)


GPX Base Link:
http://www.topografix.com/gpx.asp

A search on the Maven Central Repository shows this:
GroupId                    ArtifactId
---------------------------------------------------------
org.vesalainen.gpx    GPX11
ca.carleton.gcrc    nunaliit2-gpx
ca.carleton.gcrc    nunaliit2-gpx-jaxb
com.revolsys.open    com.revolsys.open.gis.gpx

Geographic Information Systems Stack Exchange

Geographic Information Systems Stack Exchange
http://gis.stackexchange.com/

GPS Calculation Libraries (Java)

Geocalc
https://github.com/grumlimited/geocalc

Tuesday, February 02, 2016

GPS Logger for Android

GPS Logger for Android
http://code.mendhak.com/gpslogger/

NOTE - The Garmin GLO can evidently update position location information 10 times per second.

One reviewer claimed that the Windows version of OziExplorer could keep up with the 10Hz update rate of the Garmin GLO.

Here is the base link for OziExplorer:
http://www.oziexplorer.com/

I installed a trial version on my Nexus II Android tablet

Friday, January 15, 2016