CVE-2011-2461 - How to Patch Magento Adobe Flex Vulnerability

CVE-2011-2461 For magento versions older than 1.9.1.0 you can patch this vulnerability by simply installing the patched .swf files hosted on our GitHub repo CVE-2011-2461_Magento_Patch. Am I Vulnerable? To confirm whether you’re vulnerable or not you can download ParrotNG and run this against the skin/adminhtml/default/default/media folder. More Info Find more information regarding the CVE here: Peter O’Callaghan - Magento CSRF vulnerability via Adobe Flex Minded Security - The old is new, again. Read On →

Magento 2 Js Frameworks

There is a running joke in the Magento 1.x community where we wished we had jQuery instead of Prototype as the main JavaScript framework. Magento went with Prototype as at the time Magento 1.x was first being built, Prototype was more mature than jQuery. So with the Magento 2 overhaul we now have jQuery but it’s not the only Javascript library in Magento 2. But fear not as Magento uses it in tandem with other Libraries for good reasons. Read On →

Jira Release With Git Tag

Create Jira Release When on the Kanban board for your current project: Ensure all tasks you wish to be included in your release are marked as ‘Done’. Click the ‘Release…’ link in the top right corner of the board. You should now be presented with a form asking you to enter details about this release (the version number you add into ‘Version name’ will be used later for the Git tag). Read On →

Magento 2 Setup Script

A group of scripts to quickly set up Magento 2

Read On →

Lenovo Carbon X1 Fedora 24 Wifi Issues + Solution

So my new Lenovo ultrabook is very nice, but trying to transfer a database dump over SCP was failing, every, time. In my trade, transferring large files around is pretty much a requirement so I had to find a solution. A lot of Googling later and I did the following that seemed to fix it: sudo bash -c ' echo "options iwlwifi 11n_disable=1" >> /etc/modprobe.d/iwlwifi.conf ' In order to test if the above fix works, I wrote this little script and placed in my ~/bin directory (called fixwifi) #!/usr/bin/env bash echo "f******g linux wifi..." sudo bash -c "modprobe -r iwlmvm; modprobe -r iwlwifi; modprobe iwlwifi 11n_disable=1; modprobe iwlmvm" echo "sorted" Something else I did which I’m not sure if it has helped is to symlink the firmware specified in modinfo iwlwifi to what seems to be a more up to date verion. Read On →

Fedora 24 Bash Script to Change Desktop Background

Bash Script to Change Desktop on Gnome Shell Previously on this blog I had a script that will change your desktop background and can be used on cron This is an updated version of that script, mainly the pgrep no longer works as the gdm login is matching as well so we need to be more specific when pulling out the process ID. Here is the script, copy paste into a bash script, edit the path for images and then add to your crontab and enjoy nice backgrounds of your choosing. Read On →