The analyzed AUR snapshot contains a malicious source entry named optimizer. Its
PKGBUILD invokes that file with sudo during build(), giving it root privileges:
source=(
"${_pkgname}::git+https://${_githost}/${_gituser}/${_gitname}.git"The analyzed AUR snapshot contains a malicious source entry named optimizer. Its
PKGBUILD invokes that file with sudo during build(), giving it root privileges:
source=(
"${_pkgname}::git+https://${_githost}/${_gituser}/${_gitname}.git"| version: "3.6" | |
| services: | |
| soft-serve: | |
| image: charmcli/soft-serve:latest | |
| container_name: soft-serve | |
| restart: unless-stopped | |
| ports: | |
| - 23231:23231 | |
| - 23232:23232 | |
| - 23233:23233 |
| #!/usr/bin/env bash | |
| set -e | |
| file="followers.txt" | |
| followers=() | |
| page=1 | |
| per_page=100 | |
| page_result=() | |
| # github_token= |
| #!/usr/bin/env bash | |
| set -eu | |
| # repositories should be identical at the time | |
| #SOURCE_REPO="fdehau/tui-rs" | |
| #TARGET_REPO="tui-rs-revival/tui-rs" | |
| # make sure you have the correct scope permissions | |
| #GITHUB_TOKEN="" |
| fn main() { | |
| // Initialize repository | |
| let repo = git2::Repository::open(std::env::var("REPOSITORY").unwrap()).unwrap(); | |
| let mut revwalk = repo.revwalk().unwrap(); | |
| revwalk | |
| .set_sorting(git2::Sort::NONE | git2::Sort::TIME) | |
| .unwrap(); | |
| revwalk.push_head().unwrap(); | |
| // Parse commits |
| #!/usr/bin/env bash | |
| # usage: crack.sh <log> <wordlist> | |
| usernames=() | |
| while read -r username; do | |
| read -r challenge | |
| read -r response | |
| if [ "$username" == "test" ]; then | |
| continue |
| # Please report issues with the package on GitHub or in the comments | |
| # Maintainer: Lunush | |
| pkgname=rates | |
| pkgver=0.6.0 | |
| pkgrel=1 | |
| pkgdesc="Currency exchange rates in your terminal" | |
| arch=("x86_64") | |
| url="https://github.com/lunush/rates" | |
| license=('Apache' 'MIT') |