The tool is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0) licence. This work is provided as-is, no warranties or guaranties in any way shape or form.
Download (V0.2 Beta) | About
Set-up:
A) PHP Files; Upload the files to you web server to a directory of your choosing:
Download and upload the files from the link above. Alternatively WGET and upload the files.
B) MySQL/Config:
You will need to edit the first few lines of “connect.php” file in the includes folder include your MySQL details and preferences:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/* Database config */
$db_host = 'localhost'; // In most cases you should leave this alone.
$db_user = 'root'; // MySQL username.
$db_pass = ''; // MySQL password.
$db_database = 'unsignedthread'; // MySQL database name.
/* User config */
$installed = FALSE; // IMPORTANT: Change this to $installed == TRUE; after your first login to the management console.
$sitename = 'Site Name'; // Signed name goes here!
$auth_salt = 'Vux&9+k*@MpgI-{[S;ZHbB}TM]`j+fC]F_8G&xdw4_.:kFvxdf'; // IMPORTANT - change this to a random string, random length, punctuation, letters and numbers. If this is changed after installed, old posts may not readable…
$initialadminusername = 'admin'; // CHANGE THESE VARIABLES TO YOUR INITIAL USERNAME
$initialadminpassword = 'admin'; // AND PASSWORD (after set-up I advise you comment these lines out!)
$deleteold = TRUE; //CHANGE TO FALSE TO DISABLE AUTO CLEAN-UPS |
Next go to the the URL where you have installed this service.
Check everything works, then go back into the includes/connect.php file to change the installed value to true:
|
1 |
$installed = TRUE; // IMPORTANT: Change this to $installed == TRUE; after your first login to the managment console. |
C: Done.
Yes, no more steps, you’re done!
History:
V0.1 Alpha – 19/5/2012
Initial release.
V0.2 Alpha – 19/5/2012
XSS venerabilities (as pointed out by LeakDirectory) has been repaired.