
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
= Syrup
Syrup helps you to extract bank account information and transactions.
== Usage
zions_bank = Syrup.setup_institution('zions_bank') do |config| config.username = 'user' config.password = 'pass' config.secret_questions = {'What is your secret question?' => "I don't know"} end
zions_bank.accounts.each do |account| puts "#{account.name} (#{account.current_balance})" # => "Checking (100.0)" end
account = zions_bank.find_account_by_id 123456 transactions = account.find_transactions(Date.today - 30) # => an array of Transactions from the last 30 days transactions = account.find_transactions(Date.parse('2011-01-01'), Date.parse('2011-02-01') - 1) # => an array of Transactions from the month of January
== Installation
The latest version of Syrup can be installed with Rubygems:
[sudo] gem install "syrup"
In Rails 3, add this to your Gemfile and run the +bundle+ command.
gem "syrup"
In Rails 2, add this to your environment.rb file.
config.gem "syrup"
== Supported Institutions
Currently, only Zions Bank, UCCU, and Bank of American Fork are supported. I will be implementing UCCU, USAA, and Wells Fargo (probably in that order). If you would like support for a different bank, you have two options:
FAQs
Unknown package
We found that syrup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.