
May 12, 2026, 8:19:24 PM | by Admin | 0 Comments


May 10, 2026, 1:52:00 PM | by Admin | 0 Comments




May 6, 2026, 2:16:58 PM | by Admin | 0 Comments
Revelation 13:18 | Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six.
May 6, 2026, 12:30:13 PM | by Admin | 0 Comments


Revelation 13:15 KJV | And he had power to give life unto the image of the beast, that the image of the beast should both speak, and cause that as many as would not worship the image of the beast should be killed.
John 16:33 KJV | These things I have spoken unto you, that in me ye might have peace. In the world ye shall have tribulation: but be of good cheer; I have overcome the world.
May 5, 2026, 4:19:59 PM | by Admin | 0 Comments

Matthew 17:10-12 KJV | And his disciples asked him, saying, Why then say the scribes that Elias must first come? And Jesus answered and said unto them, Elias truly shall first come, and restore all things. But I say unto you, That Elias is come already, and they knew him not, but have done unto him whatsoever they listed. Likewise shall also the Son of man suffer of them.
May 4, 2026, 12:59:50 PM | by Admin | 0 Comments

#!/usr/bin/env python3
import socket
import sys
def hex_bytes(x: str) -> bytes:
return bytes.fromhex(x)
def check_af_alg_aead():
print("=== AF_ALG AEAD reachability check ===")
# 1. Try to create an AF_ALG socket
try:
s = socket.socket(socket.AF_ALG, socket.SOCK_SEQPACKET, 0)
except OSError as e:
print(f"[OK] Could not create AF_ALG socket: {e}")
print(" AF_ALG is not usable from userspace on this system.")
return 0
print("[INFO] AF_ALG socket created.")
# 2. Try to bind to the AEAD interface used by the exploit
try:
s.bind(("aead", "authencesn(hmac(sha256),cbc(aes))"))
except OSError as e:
print(f"[OK] Could not bind to AEAD interface: {e}")
print(" The specific AEAD path used by the exploit is NOT available.")
return 0
print("[INFO] Bound to AEAD interface 'authencesn(hmac(sha256),cbc(aes))'.")
# 3. Try to set key and authsize (still non-destructive)
try:
s.setsockopt(socket.SOL_ALG, socket.ALG_SET_KEY,
hex_bytes('0800010000000010' + '0' * 64))
s.setsockopt(socket.SOL_ALG, socket.ALG_SET_AEAD_AUTHSIZE, None, 4)
except OSError as e:
print(f"[OK] Could not configure AEAD parameters: {e}")
print(" The full AEAD configuration path is not usable.")
return 0
print("[WARN] AF_ALG AEAD interface is reachable and configurable.")
print(" This strongly suggests the kernel path used by the exploit is available.")
print(" If your kernel version is known to be vulnerable, this system is likely exploitable.")
return 1
if __name__ == "__main__":
rc = check_af_alg_aead()
sys.exit(rc)


May 3, 2026, 11:10:43 PM | by Admin | 0 Comments


Revelation 8:11 KJV | And the name of the star is called Wormwood: and the third part of the waters became wormwood; and many men died of the waters, because they were made bitter.
Revelation 8:10 KJV | And the third angel sounded, and there fell a great star from heaven, burning as it were a lamp, and it fell upon the third part of the rivers, and upon the fountains of waters;

Apr 30, 2026, 12:06:36 PM | by Admin | 0 Comments
Apr 27, 2026, 6:34:34 PM | by Admin | 0 Comments

Apr 27, 2026, 3:38:59 PM | by Admin | 0 Comments