Fails to check ftp URLs with username and password
See original GitHub issueI was trying to test this library with GramTest, a grammar based test case generation tool (https://github.com/codelion/gramtest). I found that it fails to to check ftp URLs.
isUrl('ftp://username:password@hostname') //returns false
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:7 (1 by maintainers)
Top Results From Across the Web
FTP server login failure with correct user/password ... - IBM
This Q&A is abstracted from a PMR. I am having an issue while transferring file using SFTP protocol for FileOutput node. The mqsi...
Read more >Username in the address for an FTP site - Super User
Both the Internet Explorer and Windows Explorer first try to connect to FTP server anonymously. If they fail, then they prompt for credentials....
Read more >E-FTP: Unable to Add/View File Attachments if the URL has ...
Unable to use attachment PeopleCode functions if the FTP URL contains special characters in the username/password. The username/password passed ...
Read more >Error in FTP connection using domain name, username and ...
It's likely you're using a service like GoDaddy (or similar) with cPanel setup. In my case, GoDaddy usually has this error and there's...
Read more >How to Access an FTP Server from the Browser | ExaVault Blog
See how a web browser can serve as an FTP client. ... address or URL) and, obviously, the necessary security credentials to gain...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I also get this failure for a url like
'postgresql://user:pass@localhost:5432/dev'
. without a user/pass it passesThis seems to be an invalid URL:
amqp://user:pass@domain.tld:1234
The port is what throws the regex off, the rest matches just fine.