Engineer
3mos
Cloudanix, Jun 25' - Present
@AyushB24
Ayush Bulbule
@AyushB24
Software Developer
Software Developer
Engineer, Cloudanix
Pune, India
1
project
1
0
prizes
0
10
hackathons
10
0
Hackathons org.
0
1,390
contributions in the last year
Sep
S
M
T
W
T
F
S
Aug
17
stars earned
64
repositories
57
followers
PICT Labs
Jupyter Notebook
3Stars
0Forks
Fashion Store a MERN app like Myntra [23JUL2021]
JavaScript
5Stars
1Forks
Config files for my GitHub profile.
0Stars
0Forks
Calametex is a decentralized crowdfunding platform built on the Polygon blockchain. It enables users to create and contribute to fundraising campaigns securely using cryptocurrency, ensuring transparency and immutability.
JavaScript
0Stars
1Forks
3 months
Jun 25' - Present
At Cloudanix, I work as a Software Engineering Intern contributing to both backend (Rails, APIs, databases) and frontend (JavaScript, AJAX, UI/UX) development. I build scalable features like cloud insights, pagination, authentication (OAuth/SAML), and enhance the security dashboard UX, helping users monitor and secure their cloud environments.
3mos
Cloudanix, Jun 25' - Present
Your one stop solution to buy sell and own ens name provided with and arcana authentication and user friendly ui that enhance the user experience and make very easy to buy and sell the ens names.
DENS is a web app that offers a platform for buying and selling Ethereum Name Service (ENS) domains. The website is designed with a clean and user-friendly interface, making it easy for users to navigate and perform their desired tasks. Our main aim behind designing the website is to develop a decentralized platform for buying and selling domains. To develop this platform, we have used Quicknode as an RPC provider and arcana for authentication and wallet purposes. On the Buyens pages, users can search for available ENS domains using specific keywords, or browse through the list of available domains. Users can simply click on the "Buy Now" button to buy a domain and follow the checkout process. On the listens page the user can sell his owned domains. The listed ENS then get available on the Buyens page. The website uses an arcana wallet which is accessible on mobile also and we do not need to have other wallet apps to install on our mobile. By using arcana wallet, we have enabled this site to be useful on desktop and mobile. This enhances user experience and due to this users do not need to have other wallet extensions installed. Overall, DENS is a comprehensive platform for buying ENS domains, offering a range of features and tools to make the process as easy and streamlined as possible. Whether you're a buyer DENS is the go-to destination for all your ENS domain needs.
medium.com
Secrets in Code — Don’t Let Your API Keys Become Attack Vectors Ever pushed .env or API keys to GitHub by mistake? You’re not alone — and attackers are watching. What are Secrets in Code? Secrets = Things you don’t want attacker to see in you code. API keys, access tokens, database passwords, encryption keys. Secrets in Code soruce:GitGaurdain If it grants access or performs a privileged action — it’s a secret. How Secrets Leak (and Why It’s Dangerous) Developers often leak secrets without realizing it. ...
medium.com
You didn’t write that vulnerable axios or express function — but if it gets exploited in production, you’re still the one on the hook. In today’s world, your app is only as secure as the packages you install. That’s where Software Composition Analysis (SCA) comes in. What is SCA? SCA is like a security checkup for your app’s dependencies — the libraries, packages, and frameworks you didn’t write, but rely on. You may only write 10–20% of your app’s code — the rest comes from open-source packages. SCA h...
medium.com
SAST for Developers — Your First Line of Code Defense You open your PR, and there it is: “Potential SQL injection vulnerability detected.” SAST just did its job — before your code hits production. What is SAST? SAST stands for Static Application Security Testing. It scans your source code (without running it) to find security issues like: Insecure functions (eval(), system()) Bad input handling Hardcoded secrets (API keys, passwords) Access control mistakes 🧠 Think of it like a security-focused linter...