Project basic architecture

pull/4/head
Swissky 2017-02-18 23:31:11 +01:00
parent 63d79a439c
commit 95f6d6bbd3
6 changed files with 27 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
TODO/

View File

@ -1 +1,11 @@
# wordpresscan
# Wordpresscan
Work in progress
## Install & Launch
```
git clone https://github.com/swisskyrepo/Wordpresscan.git
cd Wordpresscan
chmod +x main.py
./main.py -u blog.example.com
```

4
engine/core.py Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# database_update

0
engine/load_plugins.py Normal file
View File

11
main.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import requests
import argparse
if __name__ == "__main__":
print "\033[1mWordpresscan\033[0m"
# TODO parse -u

0
plugins/example.py Normal file
View File