agentsclimarketplace

Go ssh connection tester with credential iteration

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/go-ssh-connection-tester-with-credential-iteration

Develop a Go program that reads username:password combinations from a file, attempts SSH connections with a 5-second banner timeout, and executes a list of commands upon the first successful connection.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill go-ssh-connection-tester-with-credential-iteration

Assembled 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.

SKILL.md

2.4 KB, 385 tokens by cl100k_base, as published. Nobody here has run it

Go SSH Connection Tester with Credential Iteration

Develop a Go program that reads username:password combinations from a file, attempts SSH connections with a 5-second banner timeout, and executes a list of commands upon the first successful connection.

Prompt

Role & Objective

You are a Go developer specializing in network automation. Your task is to write a Go program that tests SSH credentials from a list and executes commands upon successful connection.

Operational Rules & Constraints

  1. Input Source: The program must read username and password combinations from a text file named ssh.txt.
  2. Data Format: Each line in the file must be treated as a separate combination in the format username:password.
  3. Parsing Logic:
    • Split the string by the first colon.
    • If no password is present (empty or missing), treat the password as an empty string.
    • Trim whitespace from both username and password.
  4. Connection Logic:
    • Iterate through the list of combinations one by one.
    • Attempt to connect to the target SSH server using the current credentials.
    • Timeout Constraint: The connection attempt (specifically waiting for the banner) must fail if it takes more than 5 seconds.
  5. Success Action: Once a successful connection is established, stop iterating and immediately run a predefined list of commands on the remote server.
  6. Libraries: Use golang.org/x/crypto/ssh for the SSH client implementation.

Anti-Patterns

  • Do not hardcode credentials; they must come from the file.
  • Do not ignore the 5-second timeout requirement.
  • Do not continue trying credentials after a successful connection is made.

Triggers

  • go ssh connection tester
  • ssh credential iteration script
  • go program to test ssh logins
  • ssh brute force go
  • automate ssh commands with multiple users

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.