From 95f6d6bbd3a1dc3c26e7e026ee58b1ef99095248 Mon Sep 17 00:00:00 2001 From: Swissky Date: Sat, 18 Feb 2017 23:31:11 +0100 Subject: [PATCH] Project basic architecture --- .gitignore | 1 + README.md | 12 +++++++++++- engine/core.py | 4 ++++ engine/load_plugins.py | 0 main.py | 11 +++++++++++ plugins/example.py | 0 6 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 engine/core.py create mode 100644 engine/load_plugins.py create mode 100644 main.py create mode 100644 plugins/example.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f818907 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +TODO/ diff --git a/README.md b/README.md index a66cda9..f2cb43d 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# wordpresscan \ No newline at end of file +# 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 +``` \ No newline at end of file diff --git a/engine/core.py b/engine/core.py new file mode 100644 index 0000000..a15c0b6 --- /dev/null +++ b/engine/core.py @@ -0,0 +1,4 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# database_update \ No newline at end of file diff --git a/engine/load_plugins.py b/engine/load_plugins.py new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..b9b2864 --- /dev/null +++ b/main.py @@ -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 + + diff --git a/plugins/example.py b/plugins/example.py new file mode 100644 index 0000000..e69de29