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
power_attr(pm_async); | |
#ifdef CONFIG_SUSPEND | |
static ssize_t mem_sleep_show(struct kobject *kobj, struct kobj_attribute *attr,char *buf){ | |
char *s = buf; | |
suspend_state_t i; | |
for (i = PM_SUSPEND_MIN; i < PM_SUSPEND_MAX; i++) | |
if (mem_sleep_states[i]) { | |
const char *label = mem_sleep_states[i]; | |
if (mem_sleep_current == i) | |
s += sprintf(s, "[%s] ", label); |
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
""" | |
Created on Fri Feb 19 16:30:44 2021 | |
@author: Geovani BM | |
""" | |
import zipfile | |
def main(): | |
parent_file_name = 'turtles128.zip' | |
pswd = '0' |
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
(gdb) info file | |
Symbols from "/home/p3rplex/Downloads/binary_analysis_bypass". | |
Local exec file: | |
`/home/p3rplex/Downloads/binary_analysis_bypass', | |
file type elf64-x86-64. | |
Entry point: 0x401a30 | |
0x0000000000400200 - 0x0000000000400220 is .note.ABI-tag | |
0x0000000000400220 - 0x0000000000400244 is .note.gnu.build-id | |
0x0000000000400248 - 0x0000000000400470 is .rela.plt | |
0x0000000000401000 - 0x0000000000401017 is .init |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Mon Jun 22 16:18:09 2020 | |
@author: Issstezac1 | |
""" | |
import requests | |
import datetime | |
import itertools | |
import pandas as pd |