Skip to content

Instantly share code, notes, and snippets.

View kisapas's full-sized avatar
💭
I may be slow to respond.

Kistapas kisapas

💭
I may be slow to respond.
View GitHub Profile
@kisapas
kisapas / urls.py
Created October 18, 2019 15:03 — forked from kemoszn/urls.py
modified
from django.contrib import admin
from django.urls import path
from django.conf.urls import url
from blockchain import views
from blockchain.views import *
urlpatterns = [
path('admin/', admin.site.urls),
url('^get_chain$', views.get_chain, name="get_chain"),
url('^mine_block$', views.mine_block, name="mine_block"),
@kisapas
kisapas / pppoe.c
Created October 18, 2019 06:26 — forked from nickfox-taterli/pppoe.c
PPPoE Flood
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/ether.h>
#include <netpacket/packet.h>
#include <netinet/in.h>
#include <time.h>