Remmina: Difference between revisions
Jump to navigation
Jump to search
(16 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | |||
remmina -? | |||
</syntaxhighlight> | |||
==Playground== | ==Playground== | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
remmina - | remmina --encrypt-password | ||
remmina -c rdp://[email protected] | echo 'sadaqah!' | remmina --encrypt-password | ||
echo 'sadaqah!' | remmina --encrypt-password &>/dev/null | |||
</syntaxhighlight> | |||
| valign="top" colspan="2"| | |||
<syntaxhighlight lang="bash"> | |||
remmina -c 'rdp://admin:@10.19.83.110' | |||
remmina -c 'rdp://admin:[email protected]' | |||
remmina -c 'rdp://admin:[email protected]'& | |||
</syntaxhighlight> | |||
|- | |||
| colspan="3" | | |||
---- | |||
|- | |||
| valign="top" colspan="3"| | |||
<syntaxhighlight lang="bash"> | |||
REMMINA_RDP_USER='admin' | |||
REMMINA_RDP_PASS='sadaqah!' | |||
REMMINA_RDP_HOST='10.19.83.110' | |||
echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password &>/dev/null | |||
REMMINA_RDP_ENCR="$(echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password | grep 'Encrypted password: ' | cut -d':' -f2- | tr -d ' ')" | |||
remmina -c "rdp://${REMMINA_RDP_USER}:${REMMINA_RDP_ENCR}@${REMMINA_RDP_HOST}" | |||
</syntaxhighlight> | |||
|- | |||
| colspan="3" | | |||
---- | |||
|- | |||
| valign="top" | | |||
| valign="top" | | |||
| valign="top" | | |||
|} | |||
==Knowledge== | |||
{| | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
apt install ufw | |||
apt install nmap | |||
apt install telnet | |||
apt list --installed | |||
</syntaxhighlight> | </syntaxhighlight> | ||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | |||
nc -tv localhost 80 # tcp | |||
nc -uv localhost 1194 # udp | |||
sudo nmap -sT localhost # tcp | |||
sudo nmap -sU localhost # udp | |||
</syntaxhighlight> | |||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | |||
nc -tv vpn.shahed.biz 53 | |||
nc -tv vpn.shahed.biz 80 | |||
nc -uv vpn.shahed.biz 1194 | |||
sudo nmap -sU -sT -p U:1194,T:22,53,443 vpn.shahed.biz | |||
</syntaxhighlight> | |||
|- | |- | ||
Line 16: | Line 77: | ||
|- | |- | ||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | |||
sudo nmap vpn.shahed.biz | |||
</syntaxhighlight> | |||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | |||
sudo nmap vpn.shahed.biz | |||
</syntaxhighlight> | |||
| valign="top" | | | valign="top" | | ||
<syntaxhighlight lang="bash"> | |||
sudo nmap -sT -p T:22,80,443,1433,1443,3389,5432,8080,8433,8443 vpn.shahed.biz | |||
</syntaxhighlight> | |||
|} | |} | ||
Line 26: | Line 96: | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://superuser.com/questions/628371/ Remmina | * [https://forums.linuxmint.com/viewtopic.php?p=2304453#p2304453 Remmina » Advance » Win 7 » RDP Protocol Security] | ||
* [https://unix.stackexchange.com/questions/665423/ Remmina » Terminal » Without encrypting password] | |||
* [https://askubuntu.com/questions/1193172/ Remmina » Terminal » Full Screen Disabled] | |||
* [https://askubuntu.com/questions/914775/ Remmina » Scale Resolution After Connect] | |||
* [https://superuser.com/questions/1728632/ Remmina » Terminal » Encrypt password] | |||
* [https://askubuntu.com/questions/290824/ Remmina » Extract saved password] | |||
* [https://superuser.com/questions/628371/ Remmina » Run from the Terminal] | |||
* [https://help.ubuntu.com/community/AppleRemoteDesktop Remmina » AppleRemoteDesktop] | |||
* [https://gitlab.com/Remmina/Remmina/-/wikis/Usage/Remmina-debugging Remmina » Debugging] | |||
| valign="top" | | | valign="top" | | ||
Line 44: | Line 122: | ||
* [[Terraform]] | * [[Terraform]] | ||
* [[OpenVPN]] | * [[OpenVPN]] | ||
* [[X11VNC]] | |||
* [[Podman]] | * [[Podman]] | ||
* [[ | * [[XRDP]] | ||
| valign="top" | | | valign="top" | | ||
* [[Academia JavaEE Workspace in Ubuntu]] | * [[Academia JavaEE Workspace in Ubuntu]] | ||
* [[Docker Compose]] | * [[Docker Compose]] | ||
* [[Linux Containers]] | * [[Linux Containers]] | ||
* [[Vagrant]] | |||
* [[Ansible]] | * [[Ansible]] | ||
* [[Base64]] | |||
* [[Docker]] | |||
* [[HTTPie]] | * [[HTTPie]] | ||
* [[Jasypt]] | |||
* [[CURL]] | * [[CURL]] | ||
| valign="top" | | | valign="top" | | ||
* [https://superuser.com/questions/513496/ Linux » Terminal » Non Blocking Command] | |||
* [https://askubuntu.com/questions/1499789/ RDP » Linux » Enable from the Terminal] | |||
|} | |} |
Latest revision as of 12:40, 16 June 2024
remmina -?
Playground
remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password &>/dev/null
|
remmina -c 'rdp://admin:@10.19.83.110'
remmina -c 'rdp://admin:[email protected]'
remmina -c 'rdp://admin:[email protected]'&
| |
| ||
REMMINA_RDP_USER='admin'
REMMINA_RDP_PASS='sadaqah!'
REMMINA_RDP_HOST='10.19.83.110'
echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password &>/dev/null
REMMINA_RDP_ENCR="$(echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password | grep 'Encrypted password: ' | cut -d':' -f2- | tr -d ' ')"
remmina -c "rdp://${REMMINA_RDP_USER}:${REMMINA_RDP_ENCR}@${REMMINA_RDP_HOST}"
| ||
| ||
Knowledge
apt install ufw
apt install nmap
apt install telnet
apt list --installed
|
nc -tv localhost 80 # tcp
nc -uv localhost 1194 # udp
sudo nmap -sT localhost # tcp
sudo nmap -sU localhost # udp
|
nc -tv vpn.shahed.biz 53
nc -tv vpn.shahed.biz 80
nc -uv vpn.shahed.biz 1194
sudo nmap -sU -sT -p U:1194,T:22,53,443 vpn.shahed.biz
|
| ||
sudo nmap vpn.shahed.biz
|
sudo nmap vpn.shahed.biz
|
sudo nmap -sT -p T:22,80,443,1433,1443,3389,5432,8080,8433,8443 vpn.shahed.biz
|