Skip to content
View faishal's full-sized avatar
:octocat:
:octocat:

Organizations

@WCMumbai@NewVariable@WCPune

Block or report faishal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Upgrade OpenSSH to 7.3p1 in Cent OS 6Upgrade OpenSSH to 7.3p1 in Cent OS 6
    1
    #!/bin/bash
    2
    # Copyright © 2016 Faishal Saiyed
    3
    cd
    4
    timestamp=$(date +%s)
    5
    if [ !-f openssh-7.3.zip ];then wget https://github.com/faishal/openssh-portable/releases/download/cent.os.6.7.openssh.7.3p1/openssh-7.3.zip;fi;
  2. BuddyPressNativeAppBuddyPressNativeAppPublic

    BuddyPress Native App on React Native

    JavaScript 12 1

  3. Exploit-ScannerExploit-ScannerPublic

    Fork of https://wordpress.org/plugins/exploit-scanner plugin To add some extra options

    PHP 7 6

  4. openssh-portableopenssh-portablePublic

    Forked from openssh/openssh-portable

    Portable OpenSSH

    C 3

  5. webgrindwebgrindPublic

    Forked from michaelschiller/webgrind

    Xdebug Profiling Web Frontend in PHP

    Python 2

  6. Wordpress Multisite Crontab using WP...Wordpress Multisite Crontab using WP-CLI
    1
    WP_PATH="/var/www/site_path"
    2
    forSITE_URLin = $(wp site list --fields=domain,path,archived,deleted --format=csv --path="$WP_PATH"| grep ",0,0$"| awk -F ',''{print $1 $2}')
    3
    do
    4
    echo$SITE_URL
    5
    forEVENT_HOOKin$(wp cron event list --format=csv --fields=hook,next_run_relative --url="$SITE_URL" --path="$WP_PATH"| grep 'now$'| awk -F ',''{print $1}')