This GDB supports auto-downloading debuginfo from the following URLs:
<https://debuginfod.ubuntu.com>
Enable debuginfod for this session? (y or [n]) y
Debuginfod has been enabled.
To make this setting permanent, add 'set debuginfod enabled on' to .gdbinit.
Downloading separate debug info for /usr/bin/php7.4
(No debugging symbols found in /usr/bin/php7.4)
(gdb) attach 350091
Attaching to program: /usr/bin/php7.4, process 350091
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/python3 | |
# emailnator.com api wrapper - 01/06/2024 | |
# @github.com/motebaya | |
from httpx import AsyncClient | |
from urllib.parse import urlparse, unquote | |
from typing import Dict, Any, Union, List | |
from colorama.ansi import Fore as col | |
import json | |
class Emailnator: |
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
// ==UserScript== | |
// @name remove ads detection ele | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-08-04 | |
// @description remove modal from plugin: https://wordpress.org/plugins/chp-ads-block-detector/ | |
// @author Lorem ipsum kolor si slamet | |
// @match *://<domain here>/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=<domain here> | |
// @grant none | |
// ==/UserScript== |
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
nuitka --mingw64 --standalone --output-dir=output --show-progress --show-memory --windows-company-name=Windows --windows-product-name=Windows --windows-file-version=1.0.0 --windows-product-version=1.0.0 --onefile --include-module=calculation --follow-imports revenue.py --output-filename=revenue.exe --remove-output |
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/bash | |
track_pid() { | |
ps_output=$(ps aux | grep programname | head -1) | |
while IFS= read -r line; do | |
if [[ $line == *"php7.4"* ]]; then | |
pid=$(echo "$line" | awk '{print $2}') | |
echo "[OK] Found PHP process with PID: $pid" | |
# sleep 1 | |
gdb -p "$pid" -x "command.txt" |
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/python3.11 | |
# it help me for RE, @github.com/motebaya | |
# useless tool :) tools 17.04.2024 | |
from typing import Dict | |
from xdis import magics | |
import re, os, types, marshal, argparse | |
class Asmtool: | |
def __init__(self) -> None: |
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/ruby | |
# copyright - 2024.03.12 motebaya | |
require "async" | |
require "async/barrier" | |
require "async/http/internet" | |
require "benchmark" | |
require "httparty" | |
require "concurrent" | |
require "parallel" |
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
set debuginfod-url "https://debuginfod.ubuntu.com" | |
set debuginfod-index-urls "https://debuginfod.ubuntu.com" | |
set debuginfod enabled on |
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
# theme | |
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/craver.omp.json" | Invoke-Expression | |
# aliases | |
New-Alias py python310 | |
New-Alias rb ruby | |
# Omp history | |
Set-PSReadLineOption -PredictionSource History | |
Set-PSReadLineOption -PredictionViewStyle ListView |
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 node | |
const https = require("node:https"); | |
const path = require("node:path"); | |
const fs = require("fs"); | |
/** | |
* aether gazer global wallpaper downloader. | |
* @gist.github.com/motebaya at 26.11.2023 - 1.24PM | |
* credit: davins/mochino |