Skip to content

Commit

Permalink
bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Ramadhan Amizudin committed May 31, 2015
1 parent 8a1f2d5 commit 36db687
Show file tree
Hide file tree
Showing 19 changed files with 69,201 additions and 12,174 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
base/db-updater.php
10 changes: 7 additions & 3 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
* 01/06/2015
- rewrite few things
- bump version to 2.0.0

* 29/11/2013
- user enumeration
- theme enumeration
- version vulnerability detection
- user enumeration
- theme enumeration
- version vulnerability detection

* 27/11/2013
- Few bug fixes & fix some typos
Expand Down
37 changes: 21 additions & 16 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
A Wordpress Scanner
Copyright (C) 2013 Ramadhan Amizudin

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/>.

The MIT License (MIT)

Copyright (c) 2015 Ahmad Ramadhan Amizudin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
44 changes: 27 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
#### LICENSE

A Wordpress Scanner
Copyright (C) 2013 Ramadhan Amizudin

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/>.

Yet Another Wordpress Scanner
The MIT License (MIT)

Copyright (c) 2015 Ahmad Ramadhan Amizudin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

ramadhan.amizudin at gmail dot com

#### Run
```php app.php <url>```

#### Requirement

- At least PHP 5.3
Expand All @@ -37,4 +47,4 @@ ramadhan.amizudin at gmail dot com
- Add Proxy Support
- Wordpress version checking by file hash
- Better plugin enumeration request?
- Web UI
- Web UI
20 changes: 1 addition & 19 deletions wordress-scanner.php → app.php
Original file line number Diff line number Diff line change
@@ -1,25 +1,8 @@
<?php
/**
A Wordpress Scanner
Copyright (C) 2013 Ramadhan Amizudin
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/>.
**/

date_default_timezone_set('Asia/Kuala_Lumpur');
define('ROOT_PATH', dirname(realpath(__FILE__)) );
define('Version', '0.30Beta');
define('Version', '2.0.0');

if( strtolower(php_sapi_name()) != 'cli' ) {
printf("%s\n", "Please run only from command line interface.");
Expand Down Expand Up @@ -177,4 +160,3 @@
$end_time = time();
msg("[+] Finish Scan at " . date('d-m-Y h:iA', $end_time));
msg("[+] Total time taken is: " . round(($end_time - $start_time), 4) . " seconds");
?>
Loading

0 comments on commit 36db687

Please sign in to comment.