Skip to content

Instantly share code, notes, and snippets.

View LLLgoyour's full-sized avatar
📀
I dance alone

東雲 LLLgoyour

📀
I dance alone
View GitHub Profile
@LLLgoyour
LLLgoyour / the-programmers-idea.md
Created September 12, 2021 20:03 — forked from martinusso/the-programmers-idea.md
The Programmers Idea

Numbers

Text

  • Reverse a String – Enter a string and the program will reverse it and print it out.
  • Pig Latin – Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules.
  • Count Vowels – Enter a string and the program counts the number of vowels in the text. For added complexity have it report a sum of each vowel found.
  • Check if Palindrome – Checks if the string entered by the user is a palindrome. That is that it reads the same forwards as backwards like “racecar”
  • Count Words in a String – Counts the number of individual words in a string. For added complexity read these strings in from a text file and generate a summary.
@LLLgoyour
LLLgoyour / xenxxe.py
Created August 19, 2021 02:33 — forked from jonaslejon/xenxxe.py
Citrix XenMobile XXE Exploit
#!/usr/bin/python3
##
## PoC test for the XXE security vulnerability CVE-2018-10653 in XenMobile Server 10.8 before RP2 and 10.7 before RP3
##
## This PoC was written by Jonas Lejon 2019-11-28 <[email protected]> https://triop.se
## Reported to Citrix 2017-10, patch released 2018-05
##
import requests
import sys