Open in app

Sign In

Write

Sign In

George Mwaura Karumbi
George Mwaura Karumbi

2 Followers

Home

About

May 1

From Cybersecurity Analyst to Smart Contract Auditor: My Journey in Pursuit Of Excellence

As a cybersecurity analyst with a Comptia Security+ certification, I have always been fascinated by lockchain technology and its applications. This fascination led me to explore blockchain development and smart contracts. Recently, I completed the BNB Chain Zero2Hero Solidity bootcamp, which gave me an in-depth understanding of the Solidity language,smart…

Sch

2 min read

Sch

2 min read


Feb 13

Smart contracts are an essential part of the Ethereum network, and their performance is critical…

Maximizing Efficiency: Strategies for Optimizing Gas Usage in Solidity Smart Contracts Smart contracts are an essential part of the Ethereum network, and their performance is critical to the overall health of the ecosystem. One of the key factors affecting smart contract performance is the cost of executing code, which is…

Smart Contract Auditing

2 min read

Smart Contract Auditing

2 min read


Feb 12

Maximizing Gas Efficiency in Ethereum Contracts: The Benefits of Using calldata and private Keywords

Developing Ethereum smart contracts can be challenging, especially when it comes to optimizing the code for gas usage. Gas is a fee that is required to execute a smart contract and it is paid in Ether. When developing a smart contract, it is important to consider the gas cost as…

Smart Contract Security

2 min read

Smart Contract Security

2 min read


Sep 8, 2021

How To Find Confluence Servers With CVE-2021–26084 Vulnerability Using Nuclei

Step 1: Use this google dork to find Confluence Servers that are exposed to the internet inurl:http://confluence. login.action Step 2: Copy the list of urls to a file like this: Example: http://confluence.notocord.com http://confluence.ti9.com.br:8081 http://confluence.isi-developpement.com http://confluence.deepend.com.au https://confluence.semmtech.com/ http://confluence.ankiro.dk Dashboard Confluence is where your team collaborates and shares knowledge - create, share and discuss your files, ideas, minutes…confluence.mercurydpm.org

Infosec

1 min read

Infosec

1 min read


Jul 9, 2021

Can a global variable be changed locally in Javascript?

The short answer to that is Yes. Here is an example: var sum = 0; function addThree() { sum = sum + 3; } //var=3 // Only change code below this line function addFive(){ sum = sum +5 } //var sum=8 // Only change code above this line addThree(); console.log(sum) addFive(); console.log(sum) Without the use of the var keyword and hence being undefined, the variable sum inside functions addThree() and addFive() becomes a global variable meaning that once the value of sum changes inside the addThree() function it is also gets changed in the global variable which now becomes 3. The same is repeated after the function addFive()

JavaScript

1 min read

JavaScript

1 min read


Jul 9, 2021

Global Scope Vs. Local Scope in Functions

Where you have 2 variables with the same name i.e in a global scope and another on in a function(local scope); Inside that function the local variable takes precedence. Example: var someVar = “Head” function myFun(){ var someVar = “Hat” return someVar } console.log(myFun()) This code will print out “Hat” which is in the local scope

Localvariables

1 min read

Localvariables

1 min read


Jun 28, 2021

Understanding the “undefined” variable in Javascript

There’s usually a lot of misunderstanding surrounding the undefined variable so I am going to attempt to demystify it by sharing some knowledge around this. When javascript values are undeclared they have an initial value of undefined e.g var myVar; -has a value of undefined If you do a mathematical operation on an undefined variable you will get a NaN i.e Not a Number If you concatenate a string with an undefined variable you will get a literal string of undefined.

JavaScript

1 min read

JavaScript

1 min read

George Mwaura Karumbi

George Mwaura Karumbi

2 Followers

Cybersecurit Specialist/Software Engineer based in Nairobi Kenya.

Following
  • Jerry Shah (Jerry)

    Jerry Shah (Jerry)

  • Shifa cyclewala

    Shifa cyclewala

  • Orwa Atyat

    Orwa Atyat

  • Ev Williams

    Ev Williams

  • Sean (zseano)

    Sean (zseano)

See all (9)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech