Great Article On Packer / Ansible Work Flow
https://blog.codeship.com/packer-ansible/
Wednesday, December 21, 2016
OTP encryption
To achieve OTP:
Use Linux /dev/urandom OR
Java crypto Random generator
Good OTP papers:
http://www.cryptomuseum.com/manuf/mils/files/mils_otp_proof.pdf
http://www.mils.com/fileadmin/user_upload/Broschüren/TEC-OTP-03E-01-H.pdf
http://users.telenet.be/d.rijmenants/en/onetimepad.htm
Use Linux /dev/urandom OR
Java crypto Random generator
Good OTP papers:
http://www.cryptomuseum.com/manuf/mils/files/mils_otp_proof.pdf
http://www.mils.com/fileadmin/user_upload/Broschüren/TEC-OTP-03E-01-H.pdf
http://users.telenet.be/d.rijmenants/en/onetimepad.htm
Friday, December 16, 2016
Thursday, December 15, 2016
Friday, October 21, 2016
Wednesday, October 05, 2016
C42 Initiatives
- Requirements Cross Referencing Via Ruby/Cucumber
- JVM Usage In Conjunction With Ruby/Cucumber
Wednesday, September 28, 2016
Some PN Gathered Links
PN Links
Monday, September 19, 2016
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]
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/
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
}
# 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
Drone / Quadcopter / UAV
3D Robotics
https://3dr.com/
DJI Phantom 4
https://www.dji.com/product/phantom-4
TEAL Drones
https://tealdrones.com/
https://3dr.com/
DJI Phantom 4
https://www.dji.com/product/phantom-4
TEAL Drones
https://tealdrones.com/
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/
http://appinventor.mit.edu/explore/
Friday, June 24, 2016
Some Android Mock Location Provider Links
Some Android Mock Location Provider Links:
http://stackoverflow.com/questions/2531317/android-mock-location-on-device
https://mobiarch.wordpress.com/2012/07/17/testing-with-mock-location-data-in-android/
https://blog.testmunk.com/testing-location-mocking-on-android-devices-calabash-open-source/
https://androidcookbook.com/Recipe.seam?recipeId=1229
Good Project For PROGRAMMATICALLY Injecting Points
https://github.com/paulhoux/Android-MockProviderGPS
http://stackoverflow.com/questions/2531317/android-mock-location-on-device
https://mobiarch.wordpress.com/2012/07/17/testing-with-mock-location-data-in-android/
https://blog.testmunk.com/testing-location-mocking-on-android-devices-calabash-open-source/
https://androidcookbook.com/Recipe.seam?recipeId=1229
Good Project For PROGRAMMATICALLY Injecting Points
https://github.com/paulhoux/Android-MockProviderGPS
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"
"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
https://developer.android.com/index.html
Android Studio Installation
https://developer.android.com/studio/install.html
Subscribe to:
Posts (Atom)