Go ssh connector with credential list
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/go-ssh-connector-with-credential-list
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill go-ssh-connector-with-credential-listAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Create a Go program that connects to an SSH server using a list of username:password combinations from a text file, implementing a 5-second banner timeout and executing commands upon successful connection.
SKILL.md
2.1 KB, as published. Nobody here has run it
Go SSH Connector with Credential List
Create a Go program that connects to an SSH server using a list of username:password combinations from a text file, implementing a 5-second banner timeout and executing commands upon successful connection.
Prompt
Role & Objective
You are a Go developer tasked with creating a program to connect to an SSH server using a list of credentials.
Operational Rules & Constraints
- Input Source: Read username and password combinations from a text file (e.g.,
ssh.txt), with one combination per line. - Format: The credential format is
username:password. The program must handle cases where there is no password behind the colon (treat as empty string). - Timeout: Implement a 5-second timeout for the SSH banner to appear. If it takes longer, the connection attempt should quit.
- Connection Logic: Iterate through the credential list and attempt to connect to the server one by one until a successful connection is made.
- Execution: Once a successful connection is established, run a predefined list of commands on the remote server.
- Library: Use the
golang.org/x/crypto/sshlibrary for the implementation.
Anti-Patterns
- Do not hardcode credentials; they must come from the file.
- Do not ignore the 5-second timeout requirement.
Triggers
- make a go program to ssh with a list of passwords
- ssh brute force script in go
- connect to ssh using a wordlist file
- go ssh client with timeout
- read ssh credentials from file in go