Sovled on bare metal Kali installation with the following command in a terminal window.
sudo wget https://archive.kali.org/archive-keyring.gpg -O /usr/share/keyrings/kali-archive-keyring.gpg
com.s33me If You Want Some
Nothing fancy, just a personal log with a built in search function so I can recall what is easily forgotten.
Sunday, October 12, 2025
Monday, September 22, 2025
Monday, August 11, 2025
Python as a Windows Service
From Beta Utopia, but remember that the proper address with escape characters will be "yourUserName//yourDomain".
https://youtu.be/YyrX1UXxrVQ?feature=shared
Saturday, August 9, 2025
Iran Still Taking Hostages
Google Search Results:
"AI Overview
In August 2025, there are reports of at least four U.S. citizens being held hostage in Iran,
with some reports suggesting the number could be higher.
These detentions are occurring amidst heightened tensions following a 12-day conflict between Iran and Israel,
with U.S. involvement. The situation is further complicated by Iran's history
of using hostage-taking as a tactic to extract concessions from the United States and other nations. "
"AI Overview
In August 2025, there are reports of at least four U.S. citizens being held hostage in Iran,
with some reports suggesting the number could be higher.
These detentions are occurring amidst heightened tensions following a 12-day conflict between Iran and Israel,
with U.S. involvement. The situation is further complicated by Iran's history
of using hostage-taking as a tactic to extract concessions from the United States and other nations. "
Friday, August 8, 2025
Python Code to Automatically Open and Sign on to Zoom
The png files are screenshots of the buttons and cropped in Windows paint.
import pyautogui
import schedule
import time
import subprocess
import os
import pandas as pd
import keyboard
# functions
def join_zoom_meeting(meeting_id, meeting_PW):
thisZoom = os.startfile("C:\\Users\\Conference\\AppData\\Roaming\\Zoom\\bin\\Zoom.exe")
time.sleep(3) # Give Zoom time to open
joinbtn=pyautogui.locateOnScreen('joinameeting.png')
pyautogui.moveTo(joinbtn)
pyautogui.click()
time.sleep(2)
keyboard.write(meeting_id)
time.sleep(4)
joinbtn2=pyautogui.locateOnScreen('join.png')
pyautogui.moveTo(joinbtn2)
pyautogui.click()
time.sleep(4)
keyboard.write(meeting_PW)
time.sleep(4)
joinbtn3=pyautogui.locateOnScreen('join2.png')
pyautogui.moveTo(joinbtn3)
pyautogui.click()
time.sleep(4)
joinbtn4=pyautogui.locateOnScreen('join3.png')
pyautogui.moveTo(joinbtn4)
pyautogui.click()
return print("Opened Zoom: "+ meeting_id)
def terminate_zoom():
"""
Terminates the Zoom application on Windows.
"""
try:
os.system('taskkill /IM "Zoom.exe" /F')
print("Zoom application terminated successfully.")
except Exception as e:
print(f"Error terminating Zoom: {e}")
# main program
join_zoom_meeting('meetingd id', 'meeting password')
time.sleep(2)
terminate_zoom()
Wednesday, July 23, 2025
Denis Johnson - "Seek"
Brilliant:
"But if freedom means self-responsibility—what
about the people who can’t take care
themselves? My friend, I’m one of those
people. Every day I don’t bring down something
fatal on my head is another miracle.
And every day I experience such a miracle, I want another one.
Leave me alone. I’m in love with these miracles."
about the people who can’t take care
themselves? My friend, I’m one of those
people. Every day I don’t bring down something
fatal on my head is another miracle.
And every day I experience such a miracle, I want another one.
Leave me alone. I’m in love with these miracles."
Subscribe to:
Comments (Atom)