Skip to content

Instantly share code, notes, and snippets.

## OBJECT ORIENTED PROGRAMMING
--|- Object Oriented Programming
|
1 |---- class
|
2 |---- object
|
3 |---- Abstraction
|
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#wireshark version 3.4.9
ip.addr == 10.43.54.0/24
ip.dst == 10.43.54.0/24
ip.src == 10.43.54.0/24
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
eth.dst == 00:0C:CC:76:4E:07 #source mac filter
eth.src == 00:0C:CC:76:4E:07 #destination mac filter
ether host 00:18:0a:aa:bb:cc #a specific mac. This will not work on interfaces where traffic has been NATed like NAT mode SSID or an Internet interface
//Implementation of skip list
//code modified by @hakxcore <3
#include <bits/stdc++.h>
using namespace std;
class Node
{
public:
int key;
//hakxcore
/* For character stuffing, take two randomly chosen characters
from character set one for FLAG and other for ESCAPE. Assume that chosen
characters are F and E respectively.*/
/* Delimit the input using character F. For every
occurrence of F in data part, stuff E before F. Similarly, for every occurrence
of E in data part stuff E before data E*/
import java.io.*;
import java.util.*;
import java.lang.*;
@hakxcore
hakxcore / AdbCommands
Last active August 9, 2022 05:27 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader