python3 -c "for i in range(1, 1401): print(f'user{i}')" > users.txt Use code with caution. Copied to clipboard 2. Downloading User List (CTF Scenario)
If you have a Meterpreter shell and have enumerated 1,400+ users and saved them to a file on the target, you can download it to your attacking machine: Download 1400 user txt
This creates a file with names: user1, user2, ..., user1400. python3 -c "for i in range(1, 1401): print(f'user{i}')"