I had an integrator request this so I stood up a nodeJS server that only implements upload, not download. This way if they leaked their own password, a malicious actor is limited to forging data, and no real data can be leaked. Because it didn't work in FileZilla, they didn't want to use it. Worked at another company that shuffled data between big name gyms & health insurance companies, it also used CSV files sent ov…
How ACH works: A developer perspective (2014)
81–90 of 226 posts
Re: How ACH works: A developer perspective (2014)
#82I noticed a few comments specifically referencing FTP (and who can blame them since the HN title as of this moment specifically references it). In the first post of the series, the author refers to the server as a "Secure FTP" server, which can be confusing to read[0]. In later parts (and a little googling of my own), it's clear that the server is actually an SFTP server, not a plain-old FTP server. It's still plenty…
Is it sftp or ftps? They're very different things and I am fairly certain it's the latter.
Re: How ACH works: A developer perspective (2014)
#83Earlier quoted context omitted.
Every bank I've worked with uses SFTP rather than FTP.
Just to be pedantic. SFTP (file transfer subsystem of SSH) or FTPS (FTP + TLS)? I mean, either is fine, I would just imagine that if it was FTP at some point, moving to FTPS wouldn't be unreasonable.
Re: How ACH works: A developer perspective (2014)
#84I had an integrator request this so I stood up a nodeJS server that only implements upload, not download. This way if they leaked their own password, a malicious actor is limited to forging data, and no real data can be leaked. Because it didn't work in FileZilla, they didn't want to use it. Worked at another company that shuffled data between big name gyms & health insurance companies, it also used CSV files sent ov…
Ugh, reminds me of the time I had to integrate with a bunch of school software. They used csv over ftp (no auth). You just had to connect to the server and get the personal information of a district's students. Worse is you could google the URLs... I built a system that solved the problem but left shortly after it began to be integrated nationwide.
Re: How ACH works: A developer perspective (2014)
#85It is good to mention that it also a very similar system in Canada for EFT. I did implementation of that.
Re: How ACH works: A developer perspective (2014)
#86Earlier quoted context omitted.
They already have an API, it's called FTP or SFTP or whatever.
I don't know why everyone thinks they need an API to reimplement (poorly) basic unix functionality that's been around be for years.
Have we gotten to the point where anything not HTTP is considered old?
Re: How ACH works: A developer perspective (2014)
#87I had an integrator request this so I stood up a nodeJS server that only implements upload, not download. This way if they leaked their own password, a malicious actor is limited to forging data, and no real data can be leaked. Because it didn't work in FileZilla, they didn't want to use it. Worked at another company that shuffled data between big name gyms & health insurance companies, it also used CSV files sent ov…
why use a huge codebase like node for such a simple security critical task
Re: How ACH works: A developer perspective (2014)
#88Earlier quoted context omitted.
You can do a lot worse than ACH. It's hard to read, but it's simple and pretty well-defined. What _really_ sucks is one-off fixed-width formats that aren't well defined, or that change suddenly (oh, you thought that field would always be populated? lol no.)
Yeah, ACH is surprisingly not-unpleasant, at least relative to nightmares like X12 EDI with its implicit looping constructs and billions of companion guides that supercede random parts of the base spec.
Re: How ACH works: A developer perspective (2014)
#89Re: How ACH works: A developer perspective (2014)
#90I had an integrator request this so I stood up a nodeJS server that only implements upload, not download. This way if they leaked their own password, a malicious actor is limited to forging data, and no real data can be leaked. Because it didn't work in FileZilla, they didn't want to use it. Worked at another company that shuffled data between big name gyms & health insurance companies, it also used CSV files sent ov…
Wouldn't FileZilla have been happy with a fake blank directory response?