UTC: 2025-02-24 19:48
Nek-/choco-phpmyadmin
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
UTC: 2025-02-24 19:48
Nek-/choco-phpmyadmin
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
| #!/bin/sh | |
| # Copyright 2012 The Android Open Source Project | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |
Courant septembre, j'ai testΓ© un dΓ©veloppement qui cherche des patterns parmi (les certificats TLS venant d'Γͺtre dΓ©livrΓ©s publiquement)[http://certstream.calidog.io/]. La limite de cette recherche, c'est qu'elle s'applique sur des noms de domaines et pas des URL complΓ¨tes ! Il suffit de filtrer ces certificats avec le mot-clΓ© Β« paypal Β» pour obtenir des dizaines de noms de domaines malveillants par jour, avec parfois... juste un .zip Γ la racine. Comme j'en ai attrapΓ© quelques-uns (ici 16shop), c'est l'occasion de les dΓ©cortiquer ;)
Essayons de comprendre comment les attaquants travaillent !
https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
crates.io previously displayed badges next to a crate on its website, but that functionality has been removed. Packages should place badges in its README file which will be displayed on crates.io
actively-developed: New features are being added and bugs are being fixed.| π Morning 123 commits βββββββββββββββββββββ 9.4% | |
| π Daytime 345 commits βββββββββββββββββββββ 26.3% | |
| π Evening 548 commits βββββββββββββββββββββ 41.8% | |
| π Night 295 commits βββββββββββββββββββββ 22.5% |
| #/bin/bash | |
| # Download latest package | |
| wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz -O latest.tar.gz | |
| # Create temp folder | |
| mkdir ./phpmyadmin | |
| # Decompress latest package | |
| tar --extract --file=latest.tar.gz --strip-components=1 --directory=./phpmyadmin |
| # Instruction + template repo: https://github.com/FedericoPonzi/rust-ci | |
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - 'v*.*.*' |
| # if received key in format: | |
| #β- BEGIN SSH2 PUBLIC KEY β- | |
| # | |
| #Comment: "rsa-key-20160402" | |
| #AAAAB3NzaC1yc2EAAAABJQAAAgEAiL0jjDdFqK/kYThqKt7THrjABTPWvXmB3URI | |
| # | |
| # and you want to add it to authorized keys | |
| # from: https://tutorialinux.com/convert-ssh2-openssh/ | |
| ssh-keygen -i -f coworker.pub >> ~/.ssh/authorized_keys |
| """Download sentry data. | |
| usage: | |
| python download_sentry_data.py <org>/<project> <api_key> | |
| """ | |
| import requests | |
| import csv | |
| import sys | |
| if __name__ == '__main__': |