mirror of
https://github.com/token2/token-finder.git
synced 2026-06-22 23:42:22 -07:00
Add files via upload
This commit is contained in:
+282
@@ -0,0 +1,282 @@
|
||||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* PHP Google two-factor authentication module.
|
||||
*
|
||||
* See http://www.idontplaydarts.com/2011/07/google-totp-two-factor-authentication-for-php/
|
||||
* for more details
|
||||
*
|
||||
* @author Phil
|
||||
**/
|
||||
|
||||
class Google2FA {
|
||||
|
||||
const keyRegeneration = 30; // Interval between key regeneration
|
||||
const otpLength = 6; // Length of the Token generated
|
||||
|
||||
private static $lut = array( // Lookup needed for Base32 encoding
|
||||
"A" => 0, "B" => 1,
|
||||
"C" => 2, "D" => 3,
|
||||
"E" => 4, "F" => 5,
|
||||
"G" => 6, "H" => 7,
|
||||
"I" => 8, "J" => 9,
|
||||
"K" => 10, "L" => 11,
|
||||
"M" => 12, "N" => 13,
|
||||
"O" => 14, "P" => 15,
|
||||
"Q" => 16, "R" => 17,
|
||||
"S" => 18, "T" => 19,
|
||||
"U" => 20, "V" => 21,
|
||||
"W" => 22, "X" => 23,
|
||||
"Y" => 24, "Z" => 25,
|
||||
"2" => 26, "3" => 27,
|
||||
"4" => 28, "5" => 29,
|
||||
"6" => 30, "7" => 31
|
||||
);
|
||||
|
||||
/**
|
||||
* Generates a 16 digit secret key in base32 format
|
||||
* @return string
|
||||
**/
|
||||
public static function generate_secret_key($length = 16) {
|
||||
$b32 = "234567QWERTYUIOPASDFGHJKLZXCVBNM";
|
||||
$s = "";
|
||||
|
||||
for ($i = 0; $i < $length; $i++)
|
||||
$s .= $b32[rand(0,31)];
|
||||
|
||||
return $s;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current Unix Timestamp devided by the keyRegeneration
|
||||
* period.
|
||||
* @return integer
|
||||
**/
|
||||
public static function get_timestamp() {
|
||||
return floor(microtime(true)/self::keyRegeneration);
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a base32 string into a binary string.
|
||||
**/
|
||||
public static function base32_decode($b32) {
|
||||
|
||||
$b32 = strtoupper($b32);
|
||||
|
||||
if (!preg_match('/^[ABCDEFGHIJKLMNOPQRSTUVWXYZ234567]+$/', $b32, $match))
|
||||
throw new Exception('Invalid characters in the base32 string.');
|
||||
|
||||
$l = strlen($b32);
|
||||
$n = 0;
|
||||
$j = 0;
|
||||
$binary = "";
|
||||
|
||||
for ($i = 0; $i < $l; $i++) {
|
||||
|
||||
$n = $n << 5; // Move buffer left by 5 to make room
|
||||
$n = $n + self::$lut[$b32[$i]]; // Add value into buffer
|
||||
$j = $j + 5; // Keep track of number of bits in buffer
|
||||
|
||||
if ($j >= 8) {
|
||||
$j = $j - 8;
|
||||
$binary .= chr(($n & (0xFF << $j)) >> $j);
|
||||
}
|
||||
}
|
||||
|
||||
return $binary;
|
||||
}
|
||||
|
||||
/**
|
||||
* Takes the secret key and the timestamp and returns the one time
|
||||
* password.
|
||||
*
|
||||
* @param binary $key - Secret key in binary form.
|
||||
* @param integer $counter - Timestamp as returned by get_timestamp.
|
||||
* @return string
|
||||
**/
|
||||
public static function oath_hotp($key, $counter)
|
||||
{
|
||||
if (strlen($key) < 8)
|
||||
throw new Exception('Secret key is too short. Must be at least 16 base 32 characters');
|
||||
|
||||
$bin_counter = pack('N*', 0) . pack('N*', $counter); // Counter must be 64-bit int
|
||||
$hash = hash_hmac ('sha1', $bin_counter, $key, true);
|
||||
|
||||
return str_pad(self::oath_truncate($hash), self::otpLength, '0', STR_PAD_LEFT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifys a user inputted key against the current timestamp. Checks $window
|
||||
* keys either side of the timestamp.
|
||||
*
|
||||
* @param string $b32seed
|
||||
* @param string $key - User specified key
|
||||
* @param integer $window
|
||||
* @param boolean $useTimeStamp
|
||||
* @return boolean
|
||||
**/
|
||||
public static function verify_key($b32seed, $key, $window = 4, $useTimeStamp = true) {
|
||||
|
||||
$timeStamp = self::get_timestamp();
|
||||
|
||||
if ($useTimeStamp !== true) $timeStamp = (int)$useTimeStamp;
|
||||
|
||||
$binarySeed = self::base32_decode($b32seed);
|
||||
|
||||
for ($ts = $timeStamp - $window; $ts <= $timeStamp + $window; $ts++)
|
||||
if (self::oath_hotp($binarySeed, $ts) == $key)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Extracts the OTP from the SHA1 hash.
|
||||
* @param binary $hash
|
||||
* @return integer
|
||||
**/
|
||||
public static function oath_truncate($hash)
|
||||
{
|
||||
$offset = ord($hash[19]) & 0xf;
|
||||
|
||||
return (
|
||||
((ord($hash[$offset+0]) & 0x7f) << 24 ) |
|
||||
((ord($hash[$offset+1]) & 0xff) << 16 ) |
|
||||
((ord($hash[$offset+2]) & 0xff) << 8 ) |
|
||||
(ord($hash[$offset+3]) & 0xff)
|
||||
) % pow(10, self::otpLength);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
function util_array_trim(array &$array, $filter = false)
|
||||
{
|
||||
array_walk_recursive($array, function (&$value) use ($filter) {
|
||||
$value = trim($value);
|
||||
if ($filter) {
|
||||
$value = filter_var($value, FILTER_SANITIZE_STRING);
|
||||
$value=strip_tags($value);
|
||||
}
|
||||
});
|
||||
|
||||
return $array;
|
||||
}
|
||||
|
||||
|
||||
?> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Token finder</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
padding-left: 11em;
|
||||
font-family: Georgia, "Times New Roman",
|
||||
Times, serif;
|
||||
color: purple;
|
||||
background-color: #d8da3d }
|
||||
ul.navbar {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
position: absolute;
|
||||
top: 2em;
|
||||
left: 1em;
|
||||
width: 9em }
|
||||
h1 {
|
||||
font-family: Helvetica, Geneva, Arial,
|
||||
SunSans-Regular, sans-serif }
|
||||
ul.navbar li {
|
||||
background: white;
|
||||
margin: 0.5em 0;
|
||||
padding: 0.3em;
|
||||
border-right: 1em solid black }
|
||||
ul.navbar a {
|
||||
text-decoration: none }
|
||||
a:link {
|
||||
color: blue }
|
||||
a:visited {
|
||||
color: purple }
|
||||
address {
|
||||
margin-top: 1em;
|
||||
padding-top: 1em;
|
||||
border-top: thin dotted }
|
||||
|
||||
input { font-size:14pt ; }
|
||||
</style>
|
||||
</head><html><body>
|
||||
<H1>TOKEN2 TOKEN-Detect</H1>
|
||||
<H3> A tool to identify a token by checking/comparing the current OTP<br> against a list of shared secrets/seed hashes</H3>
|
||||
<h5>To be used if the token cannot be identified by its serial number, or if the serial number is wrongly attributed</h5>
|
||||
|
||||
<div class="timetable-body">
|
||||
<?php
|
||||
|
||||
if ($_POST ) {
|
||||
|
||||
$_POST=util_array_trim($_POST);
|
||||
|
||||
$seeds = explode("\r", $_POST['seeds']);
|
||||
|
||||
foreach ($seeds as $key => $value) {
|
||||
$key = explode(" ", $value);
|
||||
|
||||
$detected="OTP does not match any of the seeds. Please check the key or increase the offset. ";
|
||||
$offsettest=intval($_POST['otptestoffset']);
|
||||
|
||||
$TimeStamp = Google2FA::get_timestamp() ;
|
||||
if ($_POST['type']=="base32" ) {
|
||||
$secretkey = Google2FA::base32_decode($key[1]); }
|
||||
if ($_POST['type']=="hex" ) {
|
||||
$secretkey = $key[1] ; }
|
||||
|
||||
|
||||
for ($x = -$offsettest; $x <= $offsettest ; $x++) {
|
||||
if ( intval($_POST['otptest'])==intval(Google2FA::oath_hotp($secretkey, $TimeStamp+$x)) ) {
|
||||
|
||||
$detected= " Detected serial number $key[0] at offset <b>$x</b> ";
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
echo "<br><p>Result:<hr><b>".$detected."</b><hr><br>";
|
||||
}
|
||||
|
||||
?> <br> <form method=post action= >
|
||||
<fieldset style="width:44px">
|
||||
<legend>Serial+Seeds (separated by space, one per line ) <br>example: "21312312312 JBSWY3DPEHPK3PXPJBSWY3DPEHPK3PXP"</legend>
|
||||
<textarea cols=76 rows=11 name=seeds><?=$_POST['seeds']?></textarea><br><br>
|
||||
Seed format <input type="radio" name="type" value="hex"> HEX <input type="radio" checked name="type" value="base32"> Base32<br>
|
||||
</fieldset>
|
||||
<br> <fieldset style="width:44px; float:left; margin-right:15px">
|
||||
<legend>
|
||||
Current OTP </legend> <input type=number name=otptest> </fieldset>
|
||||
<fieldset style="width:44px;">
|
||||
<legend> Offset </legend> <input type=number name=otptestoffset value=1></fieldset><br><br><br>
|
||||
<input type=submit>
|
||||
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user