Error Kali Linux Pada Saat Update

error pada saat update Kali Linux

apt update 
Get:1 http://kali.download/kali kali-rolling InRelease [41.5 kB]
Err:1 http://kali.download/kali kali-rolling InRelease
  Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 827C8569F2518CC677FECA1AED65462EC8D5E4C5, which is needed to verify signature.
124 packages can be upgraded. Run 'apt list --upgradable' to see them.
Warning: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: http://kali.download/kali kali-rolling InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 827C8569F2518CC677FECA1AED65462EC8D5E4C5, which is needed to verify signature.
Warning: Failed to fetch http://http.kali.org/kali/dists/kali-rolling/InRelease  Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 827C8569F2518CC677FECA1AED65462EC8D5E4C5, which is needed to verify signature.
Warning: Some index files failed to download. They have been ignored, or old ones used instead.
Continue reading “Error Kali Linux Pada Saat Update”

Encoding and Decoding of Strings Base64

Untuk encode :

echo -n 'Hallo, Dunia' | base64
SGFsbG8sIER1bmlh

Untuk Decode

base64 -d <<< SGFsbG8sIER1bmlh
Hallo, Dunia

Menggunakan OpenSSL :

Untuk Encode :

openssl base64 <<< 'Hello, World!'
SGVsbG8sIFdvcmxkIQo=

Untuk Decode :

openssl base64 -d <<< SGVsbG8sIFdvcmxkIQo=
Hello, World!

WPScan on Linux – A WordPress Vulnerability Scanner

WPScan tersedia sebagai plugin WordPress. Plugin ini akan memindai situs WordPress Anda setiap hari dan memberi tahu Anda melalui email jika ditemukan kerentanan. Jika Anda lebih suka menggunakan WPScan pada baris perintah Linux, ikuti petunjuk di bawah ini untuk menginstal WPScan pada Debian 12, Ubuntu 18.04, Ubuntu 20.04, CentOS/RHEL 8/Fedora, Arch Linux dan pelajari cara menggunakan pemindai eksploitasi WP ini.

Continue reading “WPScan on Linux – A WordPress Vulnerability Scanner”