Skip to content
View cicero343's full-sized avatar

Block or report cicero343

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
cicero343/README.md

Welcome ! ๐Ÿ‘‹

cicero343's GitHub stats

๐Ÿ”— Links

Github Pages LinkedIn

Pinned Loading

  1. Get Session Key for encrypted traffi... Get Session Key for encrypted traffic in PCAP (Interactive)
    1
    #!/usr/bin/env python3
    2
    
    
    3
    """
    4
    This is a Python3 improved/interactive version of the script made by khr0x40sh for decrypting encrypted session keys in a PCAP file to view encrypted traffic.  
    5
  2. Export CSV file of all assigned MS T... Export CSV file of all assigned MS Teams phone numbers
    1
    # Connect to Microsoft Teams PowerShell module
    2
    Import-Module MicrosoftTeams
    3
    
    
    4
    # Connect to Microsoft Teams
    5
    Connect-MicrosoftTeams
  3. Print Available Disk Space (Linux) Print Available Disk Space (Linux)
    1
    #!/bin/bash
    2
    
    
    3
    total=$(df -h /dev/sda5 --output=size | tail -1)
    4
    used=$(df -h /dev/sda5 --output=used,pcent | tail -1)
    5
    available=$(df -h /dev/sda5 --output=avail | tail -1)
  4. Mac Notification PopUp Mac Notification PopUp
    1
    #!/bin/bash
    2
    
    
    3
    # This script contains an if function which will open the Software Update section on the user's Mac when they select OK, please feel free to remove or change this as you wish.
    4
    
    
    5
    # Function to display the warning message using AppleScript
  5. PowerShell Selection Box PowerShell Selection Box
    1
    Add-Type -AssemblyName System.Windows.Forms
    2
    Add-Type -AssemblyName System.Drawing
    3
    
    
    4
    $form = New-Object System.Windows.Forms.Form
    5
    $form.Text = 'Select a Computer'