PrerequisiteForSelfHost



clip.php
---------
<?php
if (isset($_POST['send'])) {
    $content = $_POST['send'];
}
elseif (isset($_GET['clip'])) {
    $content = $_GET['clip'];
} 
else {
    exit("No content provided.");
}
file_put_contents('clip.txt', $content);
echo "Content saved to 'clip.txt'.";
exit;
?>
<?php
if (isset($_POST['send'])) {
    $content = $_POST['send'];
    file_put_contents('clip.txt', $content);
}
exit;
?>


IntentReceive.xml.tsk
---------------------
<TaskerData sr="" dvi="1" tv="4.9u4m">
	<Task sr="task14">
		<cdate>1767128445686</cdate>
		<edate>1767129026350</edate>
		<id>14</id>
		<nme>IntentReceive</nme>
		<pri>100</pri>
		<Action sr="act0" ve="7">
			<code>123</code>
			<on>false</on>
			<Str sr="arg0" ve="3">sh /sdcard/exec/intentreceive.sh</Str>
			<Int sr="arg1" val="0"/>
			<Int sr="arg2" val="0"/>
			<Str sr="arg3" ve="3"/>
			<Str sr="arg4" ve="3"/>
			<Str sr="arg5" ve="3"/>
		</Action>
		<Action sr="act1" ve="7">
			<code>123</code>
			<Str sr="arg0" ve="3">#!/bin/bash

# URL of the script
SCRIPT_URL="https://alceawis.de/other/extra/scripts/fakesocialmedia/clip.txt"

# Fetch the script into a variable
SCRIPT=$(curl -fsSL "$SCRIPT_URL")

# Check if the script was successfully downloaded
if [ -n "$SCRIPT" ]; then
    echo "Script content (flashed):"
    echo "$SCRIPT"  # "Flash" the content directly to the terminal

    # Execute the command using su -c (with root privileges)
    su -c "$SCRIPT"

else
    echo "Failed to download script or script is empty."
fi</Str>
			<Int sr="arg1" val="0"/>
			<Int sr="arg2" val="0"/>
			<Str sr="arg3" ve="3"/>
			<Str sr="arg4" ve="3"/>
			<Str sr="arg5" ve="3"/>
		</Action>
	</Task>
</TaskerData>


apk: 
https://m.apkpure.com/tasker-url-launcher/com.aledthomas.taskerurllauncher
https://alceawis.de/other/extra/scripts/fakesocialmedia/commentload.html?number=80000&text=Oh%20nice%20%0D%0Ahttps%3A%2F%2Fm.apkpure.com%2Ftasker-url-launcher%2Fcom.aled

routes.txt
__________

sdcard
am start -a nextapp.fx.intent.action.OPEN_LOCAL -n nextapp.fx/.ui.ExplorerActivity --es "nextapp.fx.intent.extra.PATH" "$path" -f 0x10000000

microsd
am start -a nextapp.fx.intent.action.OPEN_LOCAL -n nextapp.fx/.ui.ExplorerActivity --es "nextapp.fx.intent.extra.PATH" "/storage/4041-393D/$path" -f 0x10000000

alceawis.de
am start -a nextapp.fx.intent.action.OPEN_NETWORK -n nextapp.fx/.ui.ExplorerActivity --es "nextapp.fx.intent.extra.HOST" "27" --es "nextapp.fx.intent.extra.PATH" "/path" -f 0x10000000

m7350
am start -a nextapp.fx.intent.action.OPEN_NETWORK -n nextapp.fx/.ui.ExplorerActivity --es "nextapp.fx.intent.extra.HOST" "25" --es "nextapp.fx.intent.extra.PATH" "/$path" -f 0x10000000