So with that being said would you say this is the correct method for bruteforce:
Also, when one of the agents has a hardware change do they update the table data on the server or do you need to have them re-register with it?
Last question, how are you compiling the agent? Visual Studio 2010 on an older OS maybe?
Also what do you think about a drop down hashtype list instead of having to recall the hash id?
I added this myself and tested it, works fine. You can reproduce this by replacing the data below in "admin.php" starting at line 1301 from the git repo version. (non git version may differ)
Also, when one of the agents has a hardware change do they update the table data on the server or do you need to have them re-register with it?
Last question, how are you compiling the agent? Visual Studio 2010 on an older OS maybe?
Also what do you think about a drop down hashtype list instead of having to recall the hash id?
I added this myself and tested it, works fine. You can reproduce this by replacing the data below in "admin.php" starting at line 1301 from the git repo version. (non git version may differ)
Code:
case "newhashlist":
// query hashtypes for id and description
$kver=mysqli_query_wrapper($dblink,"SELECT id,description FROM hashtypes");
// new hashlist form
echo "Upload new hashlist:";
echo "<script>function formatChange(valu) { var txtObject=document.getElementById('textopt'); if (valu=='0') { txtObject.style.display = ''; } else { txtObject.style.display = 'none'; } }</script>";
echo "<form action=\"$myself?a=newhashlistp\" method=\"POST\" enctype=\"multipart/form-data\">";
echo "<table class=\"styled\">";
echo "<tr><td>Property</td><td>Value</td></tr>";
echo "<tr><td>Name:</td><td><input type=\"text\" name=\"name\" size=\"35\"></td></tr>";
// echo "<tr><td>Hashtype:</td><td><input type=\"text\" name=\"old_hashtype\" size=\"5\"></td></tr>";
// new hashtype menu
echo "<tr><td>Hashtype:</td><td><select name=\"hashtype\">";
while($row=mysqli_fetch_array($kver,MYSQLI_ASSOC)) {
echo "<option value='" . $row['id'] . "'>" . $row['description'] . "</option>";
}
echo "</select></td></tr>";
// end new hashtype menu