Ajam
Ajam
Hi @nikitastupin how much time would the script take if the wordlist used is the [google-10000-english](https://github.com/first20hours/google-10000-english) as recommended on the main wiki. I have tested the GraphQL endpoint manually and...
@j4uonline Actually, if you check any of the `https` proxy, using [**`mubeng`**](https://github.com/kitabisa/mubeng), none of them will show **`live`**, so just grab HTTP, and you will be fine. But if you...
Not sure if this helps, but [busybox-w32](https://frippery.org/busybox/) already has timeout : https://github.com/rmyorston/busybox-w32/blob/master/coreutils/timeout.c I tested and that one works, so hopefully, it should be trivial to patch https://github.com/uutils/coreutils/tree/main/src/uu/timeout as well.
Confirmed, it works under `termux-chroot`:  
https://github.com/Azathothas/Arsenal/blob/main/misc/Github/Runners/Ubuntu/debloat.sh ```bash #!/usr/bin/env bash # Use: # bash /dev/null #8.2 GB sudo rm /opt/hostedtoolcache/CodeQL -rf 2>/dev/null #5.0 GB sudo rm /usr/local/.ghcup -rf 2>/dev/null #2.0 GB sudo rm /usr/share/dotnet -rf 2>/dev/null...
It is possible to compile a true static binary using the alpine docker image and adding all the required libraries (static versions) - An example dockerfile: https://github.com/Azathothas/Toolpacks/blob/main/.github/runners/alpine-builder.dockerfile - An example...
@ruanformigoni Hi,   I am trying to build it on arm, It is [successfull](https://github.com/Azathothas/flatimage/compare/ruanformigoni%3Aflatimage%3Amaster...master), partially (It hangs as shown in the pic) but there are some hard-coded things that...
Hi, yes, seems like it's my own static binary that's breaking it. ```bash D::subprocess.hpp::414::Spawn command: ['/tmp/fim/app/f55fa78_20241017094850/bin/fim_portal_daemon','/tmp/fim/app/f55fa78_20241017094850/instance/eMkFPB/ext.boot',] D::desktop.hpp::333::Json desktop data: D::subprocess.hpp::318::stderr(/tmp/fim/app/f55fa78_20241017094850/bin/fim_portal_daemon): D::subprocess.hpp::372::4184869 dies with 4184868 I::db.hpp::123::Failed to parse json data: ''...
Thank you for pointing me in the right direction. Seems like, I will only have to make changes to https://github.com/ruanformigoni/dwarfs/blob/experimental/image-size/build.sh And it should work.... I will try and update you...
Hi @ruanformigoni , I have finally done it. ```bash pushd "$(mktemp -d)" >/dev/null 2>&1 git clone --filter="blob:none" --depth="1" --quiet "https://github.com/Azathothas/flatimage" && cd "./flatimage" chmod +x "./deploy/flatimage.sh" sudo "./deploy/flatimage.sh" blueprint rsync...