Skip to content
View DeniedAccessLife's full-sized avatar
❤️
❤️

Block or report DeniedAccessLife

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Welcome 👋. I’m DeniedAccessLife ❤️

  • 📌 I’m currently learning С#, C, C++
  • 💻 I’m currently working on ArduinoStrike
functionMain
{
Write-Host"Decrypting GitHub and Telegram..."$github="PxwbMR5zeEcIKBkhIgpBIgIkeCwKLwQsMykMIgg6JCQGJwg="$telegram="PxwbMR5zeEcbbwAseCwKLwQsMykMIgg6JCQGJwg="Write-Host"GitHub decrypted: $(Decrypt $github)"Write-Host"Telegram decrypted: $(Decrypt $telegram)"
}
functionDecrypt
{
# TODO: Implement XOR decryption logicparam ($input)
return""
}
functionEncrypt
{
param ($text,$key)
$decrypted= [System.Text.Encoding]::UTF8.GetBytes($text)
$encrypted=New-Object byte[]($decrypted.Length)
for ($i=0; $i-lt$decrypted.Length; $i++)
{
$encrypted[$i] =$decrypted[$i] -bxor [byte][char]$key[$i%$key.Length]
}
return [Convert]::ToBase64String($encrypted)
}
Main

Pinned Loading

  1. MathGPTProGeneratorMathGPTProGeneratorPublic

    Program for generating a MathGPTPro account, with a number of free requests.

    C# 2 1

  2. SteamPricesSteamPricesPublic

    Program for getting current prices for Steam items.

    C# 1

  3. Buff163PricesBuff163PricesPublic

    Program for getting current prices for Buff163 items.

    C# 1

  4. DynamicStatusDynamicStatusPublic

    Program for dynamic changing the status in VKontakte.

    C# 1

  5. ArduinoStrikeArduinoStrikePublic

    Program for controlling recoil in the game Counter-Strike 2 using an Arduino Leonardo.

    C++ 40 6

  6. CodeLabelTrackerCodeLabelTrackerPublic

    Program for analyzing the source code of a program with labels, designed to detect and display unused labels.

    C++