Skip to content

Backed-up mostly for historical purposes. Thanks for the space GitHub <3 :D

Notifications You must be signed in to change notification settings

mikeumus/phishnet-firstgen

Repository files navigation

#Scrapetank

A scrapy spider for getting all the offline valid scripts from PhishTank.com

Run the spider: $ scrapy crawl offline_phishies -a target_id=7 See Spider-Arugements-Key.md for target_id

Creative Commons license image All content from PhishTank.com is under a Creative Commons Attribution-ShareAlike 2.5 License.


Project Notes

Deleting Tables

In ./manage.py shell

In [2]: from pishing.models import Phish                                                               
                                                                                                       
In [3]: Phish.objects.all().count()                                                                    
Out[3]: 4821                                                                                           
                                                                                                       
In [4]: Phish.objects.all().delete()                                                                   
                                                                                                       
In [5]: Phish.objects.all().count()                                                                    
Out[5]: 0   

to clear out an application is as simple as writing: ./manage.py sqlclear app_name | ./manage.py dbshell then in order to rebuild your tables just type: ./manage.py syncdb

Notes
Saving Images in Scrapy

http://doc.scrapy.org/en/latest/topics/images.html

Don't forget to install service_indentity (for C9)!

https://service-identity.readthedocs.org/en/14.0.0/installation.html

Scrapy formrequest

http://stackoverflow.com/questions/11213467/cant-get-through-a-form-with-scrapy

Code modeled after

Other references


Cloud9 ReadMe

 ,-----.,--.                  ,--. ,---.   ,--.,------.  ,------.
'  .--./|  | ,---. ,--.,--. ,-|  || o   \  |  ||  .-.  \ |  .---'
|  |    |  || .-. ||  ||  |' .-. |`..'  |  |  ||  |  \  :|  `--, 
'  '--'\|  |' '-' ''  ''  '\ `-' | .'  /   |  ||  '--'  /|  `---.
 `-----'`--' `---'  `----'  `---'  `--'    `--'`-------' `------'
----------------------------------------------------------------- 

Welcome to your Django project on Cloud9 IDE!

Your Django project is already fully setup. Just click the "Run" button to start the application. On first run you will be asked to create an admin user. You can access your application from 'https://scrapy-phishtank-mikeumus.c9.io/' and the admin page from 'https://scrapy-phishtank-mikeumus.c9.io/admin'.

Starting from the Terminal

In case you want to run your Django application from the terminal just run:

  1. Run syncdb command to sync models to database and create Django's default superuser and auth system

    $ python manage.py syncdb

  2. Run Django

    $ python manage.py runserver $IP:$PORT

Support & Documentation

Django docs can be found at https://www.djangoproject.com/

You may also want to follow the Django tutorial to create your first application: https://docs.djangoproject.com/en/1.7/intro/tutorial01/

Visit http://docs.c9.io for support, or to learn more about using Cloud9 IDE. To watch some training videos, visit http://www.youtube.com/user/c9ide

About

Backed-up mostly for historical purposes. Thanks for the space GitHub <3 :D

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages